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
diff options
context:
space:
mode:
authorHendrik Leppelsack <hendrik@leppelsack.de>2015-10-01 23:54:36 +0300
committerHendrik Leppelsack <hendrik@leppelsack.de>2015-10-01 23:54:36 +0300
commitd4ce71374985462e1110431e6aa0683c8f25ddfa (patch)
tree1d9d254412be867eb77321a14e0130d1c9c4fafe /apps/files_trashbin
parentb6591084a133e5a7c5853074c375e5e904de7396 (diff)
display checkboxes properly after file restore
Diffstat (limited to 'apps/files_trashbin')
-rw-r--r--apps/files_trashbin/js/filelist.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_trashbin/js/filelist.js b/apps/files_trashbin/js/filelist.js
index febe3a45be3..6b624e333a0 100644
--- a/apps/files_trashbin/js/filelist.js
+++ b/apps/files_trashbin/js/filelist.js
@@ -268,12 +268,12 @@
enableActions: function() {
this.$el.find('.action').css('display', 'inline');
- this.$el.find(':input:checkbox').css('display', 'inline');
+ this.$el.find('input:checkbox').removeClass('u-hidden');
},
disableActions: function() {
this.$el.find('.action').css('display', 'none');
- this.$el.find(':input:checkbox').css('display', 'none');
+ this.$el.find('input:checkbox').addClass('u-hidden');
},
updateStorageStatistics: function() {