make select all checkbox work again

remotes/origin/stable
Robin Appelman 14 years ago
parent 6111ad4306
commit 4d1ff67cac
  1. 4
      files/js/files.js

@ -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

Loading…
Cancel
Save