Skip to content
Snippets Groups Projects
Commit 4d1ff67c authored by Robin Appelman's avatar Robin Appelman
Browse files

make select all checkbox work again

parent 6111ad43
No related branches found
No related tags found
No related merge requests found
......@@ -33,10 +33,10 @@ $(document).ready(function() {
if($(this).attr('checked'))
// Check all
$('.browser input:checkbox').attr('checked', true);
$('td.selection input:checkbox').attr('checked', true);
else
// Uncheck all
$('.browser input:checkbox').attr('checked', false);
$('td.selection input:checkbox').attr('checked', false);
});
// Delete current file
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment