diff options
author | Jan-Christoph Borchardt <JanCBorchardt@fsfe.org> | 2011-08-14 14:55:43 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <JanCBorchardt@fsfe.org> | 2011-08-14 14:55:43 +0200 |
commit | 6e30ade0b34224f92ecf4bc7c95cc319006ee4b8 (patch) | |
tree | 5d245068b3ac33811f733d8e8cb1458ddfd5ee33 /core/js/js.js | |
parent | f2a21398d791beda3e1de0a5c4c12a141e70c795 (diff) | |
download | nextcloud-server-6e30ade0b34224f92ecf4bc7c95cc319006ee4b8.tar.gz nextcloud-server-6e30ade0b34224f92ecf4bc7c95cc319006ee4b8.zip |
updated tipsy, tooltips finally work everywhere, thanks icewind
Diffstat (limited to 'core/js/js.js')
-rw-r--r-- | core/js/js.js | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/core/js/js.js b/core/js/js.js index cddf95a8435..e2263685939 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -298,11 +298,17 @@ $(document).ready(function(){ $('#settings #expanddiv').slideUp(); } }); - - if($('.action').attr('title')) $('.action').tipsy({gravity:'s', fade:true, live:true}); - $('.selectedActions a').tipsy({gravity:'n', fade:true, live:true}); + + $('.remove .action').tipsy({gravity:'se', fade:true, live:true}); + $('.date .action').tipsy({gravity:'se', fade:true, live:true}); + $('.action').tipsy({gravity:'s', fade:true, live:true}); $('.selectedActions a.delete').tipsy({gravity: 'ne', fade:true, live:true}); - $('input#identity').tipsy({gravity:'w', fade:true}); + $('.selectedActions a').tipsy({gravity:'n', fade:true, live:true}); + $('input').each(function(i,input) { + if($(input).attr('title')) { + $(input).tipsy({gravity:'w', fade:true}); + } + }); }); if (!Array.prototype.map){ |