summaryrefslogtreecommitdiffstats
path: root/apps/files/js/fileactions.js
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2014-09-22 18:17:33 +0200
committerJan-Christoph Borchardt <hey@jancborchardt.net>2014-09-22 18:17:33 +0200
commit91d9d45c6c55d5ee2f44567893cf96d034aaed1e (patch)
treef093f1c5bb09b9b6a02a94b6e789e2f6c4c6d7bc /apps/files/js/fileactions.js
parent3c5ac2112257731bb89a16e040563e1dddcef689 (diff)
downloadnextcloud-server-91d9d45c6c55d5ee2f44567893cf96d034aaed1e.tar.gz
nextcloud-server-91d9d45c6c55d5ee2f44567893cf96d034aaed1e.zip
correct delete-icon to icon-delete, fix #11128
Diffstat (limited to 'apps/files/js/fileactions.js')
-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 4aefd61a19a..8ae0d8f1b2e 100644
--- a/apps/files/js/fileactions.js
+++ b/apps/files/js/fileactions.js
@@ -304,7 +304,7 @@
if (img.call) {
img = img(file);
}
- html = '<a href="#" original-title="' + escapeHTML(deleteTitle) + '" class="action delete delete-icon" />';
+ html = '<a href="#" original-title="' + escapeHTML(deleteTitle) + '" class="action delete icon-delete" />';
var element = $(html);
element.data('action', actions['Delete']);
element.on('click', {a: null, elem: parent, actionFunc: actions['Delete'].action}, actionHandler);