diff options
author | Jan-Christoph Borchardt <JanCBorchardt@fsfe.org> | 2011-08-28 08:46:38 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <JanCBorchardt@fsfe.org> | 2011-08-28 08:46:38 +0200 |
commit | bcfdc12852ba5bc7b1a9085ce79f3743d888ba9b (patch) | |
tree | 9a0fe04f83fac2bc9c5300920894017c2abf3aa8 /core/js/js.js | |
parent | fef7e9d5f448c490cd9f6184381d9bc73dd23a63 (diff) | |
download | nextcloud-server-bcfdc12852ba5bc7b1a9085ce79f3743d888ba9b.tar.gz nextcloud-server-bcfdc12852ba5bc7b1a9085ce79f3743d888ba9b.zip |
fixed tipsy gravity for multiselect file actions
Diffstat (limited to 'core/js/js.js')
-rw-r--r-- | core/js/js.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/js/js.js b/core/js/js.js index f2b60790c79..9d2b20d10f0 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -334,12 +334,12 @@ $(document).ready(function(){ $('.jp-controls .jp-previous').tipsy({gravity:'nw', fade:true, live:true}); $('.jp-controls .jp-next').tipsy({gravity:'n', fade:true, live:true}); $('.password .action').tipsy({gravity:'se', fade:true, live:true}); - $('.selectedActions a.delete').tipsy({gravity: 'ne', fade:true, live:true}); - $('.selectedActions a').tipsy({gravity:'n', fade:true, live:true}); $('.file_upload_button_wrapper').tipsy({gravity:'e', fade:true}); + $('.selectedActions a.delete').tipsy({gravity: 'se', fade:true, live:true}); + $('.selectedActions a').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}); - $('#headerSize').tipsy({gravity:'s', fade:true, live:true}); $('input').tipsy({gravity:'w', fade:true}); $('input[type=text]').focus(function(){ |