Merge pull request #8773 from owncloud/l10n-tipsy-delete
show delete hint text on hovering trash
This commit is contained in:
commit
b14564480e
|
@ -180,7 +180,7 @@
|
||||||
if (typeof trashBinApp !== 'undefined' && trashBinApp) {
|
if (typeof trashBinApp !== 'undefined' && trashBinApp) {
|
||||||
html = '<a href="#" original-title="' + t('files', 'Delete permanently') + '" class="action delete delete-icon" />';
|
html = '<a href="#" original-title="' + t('files', 'Delete permanently') + '" class="action delete delete-icon" />';
|
||||||
} else {
|
} 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);
|
var element = $(html);
|
||||||
element.data('action', actions['Delete']);
|
element.data('action', actions['Delete']);
|
||||||
|
|
Loading…
Reference in New Issue