Merge pull request #8773 from owncloud/l10n-tipsy-delete

show delete hint text on hovering trash
This commit is contained in:
Lukas Reschke 2014-05-29 21:30:50 +02:00
commit b14564480e
1 changed files with 1 additions and 1 deletions

View File

@ -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']);