diff options
author | Jan-Christoph Borchardt <jan@unhosted.org> | 2012-04-13 18:28:17 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <jan@unhosted.org> | 2012-04-13 18:28:17 +0200 |
commit | eea0d2e096807da279a0b05295a319a62b736bcf (patch) | |
tree | d7e18fb0b184ae617cdae4831137a5a15c0685bb /core/js | |
parent | add9673ad6583c750b784ea21660843fccbdc898 (diff) | |
download | nextcloud-server-eea0d2e096807da279a0b05295a319a62b736bcf.tar.gz nextcloud-server-eea0d2e096807da279a0b05295a319a62b736bcf.zip |
fixing delete tooltip
Diffstat (limited to 'core/js')
-rw-r--r-- | core/js/js.js | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/core/js/js.js b/core/js/js.js index 2927299b03f..7e8ca6164c6 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -414,10 +414,9 @@ $(document).ready(function(){ $('.jp-controls .jp-next').tipsy({gravity:'n', fade:true, live:true}); $('.password .action').tipsy({gravity:'se', fade:true, live:true}); $('.file_upload_button_wrapper').tipsy({gravity:'w', fade:true}); - $('.selectedActions a.delete').tipsy({gravity: 'se', fade:true, live:true}); - $('a.action').tipsy({gravity:'s', fade:true, live:true}); - $('a.delete').tipsy({gravity: 'se', fade:true, live:true}); $('.selectedActions a').tipsy({gravity:'s', fade:true, live:true}); + $('a.delete').tipsy({gravity: 'se', 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}); $('td .modified').tipsy({gravity:'s', fade:true, live:true}); |