summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2015-04-15 09:10:21 +0200
committerJan-Christoph Borchardt <hey@jancborchardt.net>2015-04-15 09:10:21 +0200
commit9332c8c266d0734193961b43d9a03ebcb5364204 (patch)
treecdc3c14778bc84776948515db6a019b7a4193a09 /core
parent2a683369526e33ea495ecce47a8de812f3320bc2 (diff)
downloadnextcloud-server-9332c8c266d0734193961b43d9a03ebcb5364204.tar.gz
nextcloud-server-9332c8c266d0734193961b43d9a03ebcb5364204.zip
remove slow fade animation for tipsy tooltip
Diffstat (limited to 'core')
-rw-r--r--core/js/js.js20
1 files changed, 10 insertions, 10 deletions
diff --git a/core/js/js.js b/core/js/js.js
index cb93e73f2e0..7604dc2a5b7 100644
--- a/core/js/js.js
+++ b/core/js/js.js
@@ -1142,16 +1142,16 @@ function initCore() {
});
// all the tipsy stuff needs to be here (in reverse order) to work
- $('.displayName .action').tipsy({gravity:'se', fade:true, live:true});
- $('.password .action').tipsy({gravity:'se', fade:true, live:true});
- $('#upload').tipsy({gravity:'w', fade:true});
- $('.selectedActions a').tipsy({gravity:'s', fade:true, live:true});
- $('a.action.delete').tipsy({gravity:'e', fade:true, live:true});
- $('a.action').tipsy({gravity:'s', fade:true, live:true});
- $('td .modified').tipsy({gravity:'s', fade:true, live:true});
- $('td.lastLogin').tipsy({gravity:'s', fade:true, html:true});
- $('input').tipsy({gravity:'w', fade:true});
- $('.extra-data').tipsy({gravity:'w', fade:true, live:true});
+ $('.displayName .action').tipsy({gravity:'se', live:true});
+ $('.password .action').tipsy({gravity:'se', live:true});
+ $('#upload').tipsy({gravity:'w'});
+ $('.selectedActions a').tipsy({gravity:'s', live:true});
+ $('a.action.delete').tipsy({gravity:'e', live:true});
+ $('a.action').tipsy({gravity:'s', live:true});
+ $('td .modified').tipsy({gravity:'s', live:true});
+ $('td.lastLogin').tipsy({gravity:'s', html:true});
+ $('input').tipsy({gravity:'w'});
+ $('.extra-data').tipsy({gravity:'w', live:true});
// toggle for menus
$(document).on('mouseup.closemenus', function(event) {