diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-07-18 18:46:37 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-07-18 18:46:37 +0200 |
commit | 4bfd61fb7fcbc6394bbf2ee83f733cd09abb63a3 (patch) | |
tree | 8aeaa7aa66908fd7b6f5213585c93c68268431c1 /apps | |
parent | 8a25d1ad068b67914ae87159e062c28433a3a789 (diff) | |
download | nextcloud-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.js | 2 |
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" />'; } |