diff options
author | Arthur Schiwon <blizzz@owncloud.com> | 2012-03-29 18:17:46 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@owncloud.com> | 2012-03-29 18:32:25 +0200 |
commit | af75ecf9da9d66f9ef772d4482a7e79a960fd464 (patch) | |
tree | 2018222d7773faa62f4b05d7edd807f552fe99a2 /files | |
parent | e2fd0bbf026631c05874f816e6d8d56eb6a23293 (diff) | |
download | nextcloud-server-af75ecf9da9d66f9ef772d4482a7e79a960fd464.tar.gz nextcloud-server-af75ecf9da9d66f9ef772d4482a7e79a960fd464.zip |
make checkboxes on files page work with IE8 ()
Diffstat (limited to 'files')
-rw-r--r-- | files/js/files.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/js/files.js b/files/js/files.js index 539d5598899..df9f45a7af4 100644 --- a/files/js/files.js +++ b/files/js/files.js @@ -98,7 +98,7 @@ $(document).ready(function() { procesSelection(); }); - $('td.filename input:checkbox').live('click',function(event) { + $('td.filename input:checkbox').live('change',function(event) { if (event.shiftKey) { var last = $(lastChecked).parent().parent().prevAll().length; var first = $(this).parent().parent().prevAll().length; |