Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorJörn Friedrich Dreyer <jfd@butonic.de>2013-01-07 15:23:29 +0400
committerJörn Friedrich Dreyer <jfd@butonic.de>2013-01-07 15:23:29 +0400
commit3bb7ee521f38e1ab1fc7cd160dc3d0ae77f0433e (patch)
tree84485582ac7a7f041381a2440955ebeb96d35da8 /core
parentda442b024c50160be58281975a6fabe2d86a61a7 (diff)
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.js2
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});