diff options
author | Jörn Friedrich Dreyer <jfd@butonic.de> | 2013-01-07 12:23:29 +0100 |
---|---|---|
committer | Jörn Friedrich Dreyer <jfd@butonic.de> | 2013-01-07 12:23:29 +0100 |
commit | 3bb7ee521f38e1ab1fc7cd160dc3d0ae77f0433e (patch) | |
tree | 84485582ac7a7f041381a2440955ebeb96d35da8 /core | |
parent | da442b024c50160be58281975a6fabe2d86a61a7 (diff) | |
download | nextcloud-server-3bb7ee521f38e1ab1fc7cd160dc3d0ae77f0433e.tar.gz nextcloud-server-3bb7ee521f38e1ab1fc7cd160dc3d0ae77f0433e.zip |
attach max upload tipsy to div instead of a to fix tooltip not showing due to new z-index
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 9f3e8f92100..95889ac8a27 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -622,7 +622,7 @@ $(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}); - $('#upload a').tipsy({gravity:'w', fade:true}); + $('#upload').tipsy({gravity:'w', fade:true}); $('.selectedActions a').tipsy({gravity:'s', fade:true, live:true}); $('a.delete').tipsy({gravity: 'e', fade:true, live:true}); $('a.action').tipsy({gravity:'s', fade:true, live:true}); |