summaryrefslogtreecommitdiffstats
path: root/core/js
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <jan@unhosted.org>2012-04-13 17:22:23 +0200
committerJan-Christoph Borchardt <jan@unhosted.org>2012-04-13 17:22:23 +0200
commit31df4c00eca8ac3de3f72ae01252147a289f15cd (patch)
treea3d7c433f0664db737de53ad6a18e36aabf276ea /core/js
parentb95f561bf29094421b827bb1fcae96122ebf8f4a (diff)
downloadnextcloud-server-31df4c00eca8ac3de3f72ae01252147a289f15cd.tar.gz
nextcloud-server-31df4c00eca8ac3de3f72ae01252147a289f15cd.zip
adding tipsy tooltips for file actions
Diffstat (limited to 'core/js')
-rw-r--r--core/js/js.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/core/js/js.js b/core/js/js.js
index 44b4f503b8c..2927299b03f 100644
--- a/core/js/js.js
+++ b/core/js/js.js
@@ -413,8 +413,10 @@ $(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});
- $('.file_upload_button_wrapper').tipsy({gravity:'w', fade: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});
$('#headerSize').tipsy({gravity:'s', fade:true, live:true});
$('td.filesize').tipsy({gravity:'s', fade:true, live:true});