Panel/js/modules/update.js

5 lines
No EOL
144 B
JavaScript
Executable file

function toggleChecked(status) {
$("input[type=checkbox]").each( function() {
$(this).attr('checked', status).prop('checked', status);
});
}