diff options
author | Volkan Gezer <volkangezer@gmail.com> | 2014-05-28 20:27:28 +0200 |
---|---|---|
committer | Volkan Gezer <volkangezer@gmail.com> | 2014-05-28 20:27:28 +0200 |
commit | f7cc07ba41a297fba28d97106d07061cb62a2120 (patch) | |
tree | 1e990dafddb37aeb0e458d5522f969530b3baafb | |
parent | ce9d5df6df37e51587dcde638086dfe501892b56 (diff) | |
download | nextcloud-server-f7cc07ba41a297fba28d97106d07061cb62a2120.tar.gz nextcloud-server-f7cc07ba41a297fba28d97106d07061cb62a2120.zip |
show delete hint text on hovering trash
-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 2edb45f544c..085195e961d 100644 --- a/apps/files/js/fileactions.js +++ b/apps/files/js/fileactions.js @@ -180,7 +180,7 @@ if (typeof trashBinApp !== 'undefined' && trashBinApp) { html = '<a href="#" original-title="' + t('files', 'Delete permanently') + '" class="action delete delete-icon" />'; } else { - html = '<a href="#" class="action delete delete-icon" />'; + html = '<a href="#" original-title="' + t('files', 'Delete') + '" class="action delete delete-icon" />'; } var element = $(html); element.data('action', actions['Delete']); |