summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2013-07-18 18:46:37 +0200
committerJan-Christoph Borchardt <hey@jancborchardt.net>2013-07-18 18:46:37 +0200
commit4bfd61fb7fcbc6394bbf2ee83f733cd09abb63a3 (patch)
tree8aeaa7aa66908fd7b6f5213585c93c68268431c1 /apps
parent8a25d1ad068b67914ae87159e062c28433a3a789 (diff)
downloadnextcloud-server-4bfd61fb7fcbc6394bbf2ee83f733cd09abb63a3.tar.gz
nextcloud-server-4bfd61fb7fcbc6394bbf2ee83f733cd09abb63a3.zip
use new delete icon for deleted files as well
Diffstat (limited to 'apps')
-rw-r--r--apps/files/js/fileactions.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/js/fileactions.js b/apps/files/js/fileactions.js
index 59cf007f53d..ef82cd63468 100644
--- a/apps/files/js/fileactions.js
+++ b/apps/files/js/fileactions.js
@@ -123,7 +123,7 @@ var FileActions = {
img = img(file);
}
if (typeof trashBinApp !== 'undefined' && trashBinApp) {
- var html = '<a href="#" original-title="' + t('files', 'Delete permanently') + '" class="action delete" />';
+ var html = '<a href="#" original-title="' + t('files', 'Delete permanently') + '" class="action delete delete-icon" />';
} else {
var html = '<a href="#" class="action delete delete-icon" />';
}