diff options
author | Hendrik Leppelsack <hendrik@leppelsack.de> | 2015-10-01 22:54:36 +0200 |
---|---|---|
committer | Hendrik Leppelsack <hendrik@leppelsack.de> | 2015-10-01 22:54:36 +0200 |
commit | d4ce71374985462e1110431e6aa0683c8f25ddfa (patch) | |
tree | 1d9d254412be867eb77321a14e0130d1c9c4fafe /apps | |
parent | b6591084a133e5a7c5853074c375e5e904de7396 (diff) | |
download | nextcloud-server-d4ce71374985462e1110431e6aa0683c8f25ddfa.tar.gz nextcloud-server-d4ce71374985462e1110431e6aa0683c8f25ddfa.zip |
display checkboxes properly after file restore
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_trashbin/js/filelist.js | 4 |
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() { |