From: Robin Appelman Date: Mon, 18 Apr 2011 10:41:19 +0000 (+0200) Subject: make select all checkbox work again X-Git-Tag: v3.0~267^2~558^2~59^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=4d1ff67cac5df734ab224ee42424a7e53ca1caa6;p=nextcloud-server.git make select all checkbox work again --- diff --git a/files/js/files.js b/files/js/files.js index 019758dc497..6dc1f639e83 100644 --- a/files/js/files.js +++ b/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