diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-09-22 18:17:33 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-09-22 18:17:33 +0200 |
commit | 91d9d45c6c55d5ee2f44567893cf96d034aaed1e (patch) | |
tree | f093f1c5bb09b9b6a02a94b6e789e2f6c4c6d7bc /apps/files/js/fileactions.js | |
parent | 3c5ac2112257731bb89a16e040563e1dddcef689 (diff) | |
download | nextcloud-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.js | 2 |
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); |