diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-07-18 18:41:01 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-07-18 18:41:01 +0200 |
commit | 8a25d1ad068b67914ae87159e062c28433a3a789 (patch) | |
tree | 52ac40f0be4a57b7cf7a5c519907fd25336874a8 | |
parent | 197c979d264f15d82e991f45c7155b2172aae3c6 (diff) | |
download | nextcloud-server-8a25d1ad068b67914ae87159e062c28433a3a789.tar.gz nextcloud-server-8a25d1ad068b67914ae87159e062c28433a3a789.zip |
remove unnecessary tipsy for Files delete
-rw-r--r-- | apps/files/js/fileactions.js | 2 | ||||
-rw-r--r-- | core/js/js.js | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/apps/files/js/fileactions.js b/apps/files/js/fileactions.js index bb0a27638e4..59cf007f53d 100644 --- a/apps/files/js/fileactions.js +++ b/apps/files/js/fileactions.js @@ -125,7 +125,7 @@ var FileActions = { if (typeof trashBinApp !== 'undefined' && trashBinApp) { var html = '<a href="#" original-title="' + t('files', 'Delete permanently') + '" class="action delete" />'; } else { - var html = '<a href="#" original-title="' + t('files', 'Delete') + '" class="action delete delete-icon" />'; + var html = '<a href="#" class="action delete delete-icon" />'; } var element = $(html); element.data('action', actions['Delete']); diff --git a/core/js/js.js b/core/js/js.js index 5158b66d73a..6558adbb6a7 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -664,7 +664,6 @@ $(document).ready(function(){ $('.password .action').tipsy({gravity:'se', fade:true, live:true}); $('#upload').tipsy({gravity:'w', fade:true}); $('.selectedActions a').tipsy({gravity:'s', fade:true, live:true}); - $('a.delete').tipsy({gravity: 'e', fade:true, live:true}); $('a.action').tipsy({gravity:'s', fade:true, live:true}); $('#headerSize').tipsy({gravity:'s', fade:true, live:true}); $('td.filesize').tipsy({gravity:'s', fade:true, live:true}); |