diff options
author | Jan-Christoph Borchardt <jan@unhosted.org> | 2012-04-15 17:40:58 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <jan@unhosted.org> | 2012-04-15 17:49:54 +0200 |
commit | e5cda3abcdb244bfa1f9e988cdc8089476151b03 (patch) | |
tree | c3fc39276244b8a11df83ea496f5b7378597275c /core | |
parent | 2dfab65a330c46340c398cb0364ab4c4652f2745 (diff) | |
download | nextcloud-server-e5cda3abcdb244bfa1f9e988cdc8089476151b03.tar.gz nextcloud-server-e5cda3abcdb244bfa1f9e988cdc8089476151b03.zip |
tooltip for delete shows up to the left
Diffstat (limited to 'core')
-rw-r--r-- | core/js/js.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/js/js.js b/core/js/js.js index 51dcbe5413e..019c40a0e1b 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -418,7 +418,7 @@ $(document).ready(function(){ $('.password .action').tipsy({gravity:'se', fade:true, live:true}); $('.file_upload_button_wrapper').tipsy({gravity:'w', fade:true}); $('.selectedActions a').tipsy({gravity:'s', fade:true, live:true}); - $('a.delete').tipsy({gravity: 'se', 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}); |