diff options
author | Jan-Christoph Borchardt <JanCBorchardt@fsfe.org> | 2011-08-12 11:26:13 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <JanCBorchardt@fsfe.org> | 2011-08-12 11:26:13 +0200 |
commit | 6c4d075bd656497e793c230818c53fa085cbbbf9 (patch) | |
tree | 55aff5d2c17074056998537eb441227ff64d9cd5 /files/js/files.js | |
parent | 3747ba928ff573a8c50943ac8748ec2c24cbba09 (diff) | |
download | nextcloud-server-6c4d075bd656497e793c230818c53fa085cbbbf9.tar.gz nextcloud-server-6c4d075bd656497e793c230818c53fa085cbbbf9.zip |
added jquery-tipsy for nice title tooltips
Diffstat (limited to 'files/js/files.js')
-rw-r--r-- | files/js/files.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/files/js/files.js b/files/js/files.js index 6af021c35bc..8fd4b95ec7b 100644 --- a/files/js/files.js +++ b/files/js/files.js @@ -17,6 +17,10 @@ $(document).ready(function() { $('#file_upload_start').trigger('click'); return false; }); + + $('#file_upload_button_wrapper').tipsy({gravity:'e'}); + $('td.filesize').tipsy({gravity:'se', live:true}); + $('td .modified').tipsy({gravity:'s', live:true}); // Sets the file-action buttons behaviour : $('tr').live('mouseenter',function(event) { |