morph-rc/configuration/sources/cryto-books/script.js

12 lines
174 B
JavaScript
Raw Normal View History

2019-08-07 13:01:04 +02:00
function toggle_all()
{
if($('#type_all')[0].checked == true)
{
$('.type_checkbox').attr('checked', true);
}
else
{
$('.type_checkbox').attr('checked', false);
}
}