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/apps
diff options
context:
space:
mode:
authorRobin Appelman <robin@icewind.nl>2014-12-08 18:30:53 +0300
committerRobin Appelman <robin@icewind.nl>2014-12-08 18:30:53 +0300
commitbaf5c44bec28a7ef36abca25fd0180b95f0bd832 (patch)
tree5e0da3c2841cb0ce069a3abbb9661463969e9251 /apps
parent1362c0b67a42873e57dc69437a39c4473caef1a5 (diff)
parentb2d4e53f668eac6c8b792cfa255967235cbcc6bd (diff)
Merge pull request #12696 from owncloud/trashbin-selected-delete
Fix deleting selected files in the trashbin
Diffstat (limited to 'apps')
-rw-r--r--apps/files_trashbin/js/filelist.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/files_trashbin/js/filelist.js b/apps/files_trashbin/js/filelist.js
index a3631a2d0fe..12f3f1982f6 100644
--- a/apps/files_trashbin/js/filelist.js
+++ b/apps/files_trashbin/js/filelist.js
@@ -268,6 +268,10 @@
updateStorageStatistics: function() {
// no op because the trashbin doesn't have
// storage info like free space / used space
+ },
+
+ isSelectedDeletable: function() {
+ return true;
}
});