Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/files
diff options
context:
space:
mode:
authorArthur Schiwon <blizzz@owncloud.com>2012-03-29 20:17:46 +0400
committerArthur Schiwon <blizzz@owncloud.com>2012-03-29 20:32:25 +0400
commitaf75ecf9da9d66f9ef772d4482a7e79a960fd464 (patch)
tree2018222d7773faa62f4b05d7edd807f552fe99a2 /files
parente2fd0bbf026631c05874f816e6d8d56eb6a23293 (diff)
make checkboxes on files page work with IE8 ()
Diffstat (limited to 'files')
-rw-r--r--files/js/files.js2
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;