summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorVincent Petry <pvince81@owncloud.com>2015-04-15 12:14:54 +0200
committerVincent Petry <pvince81@owncloud.com>2015-04-15 12:14:54 +0200
commit75268860fcac2afd1c3a77d0a4ac58ef8db0e9c9 (patch)
treea1d7490782ae46e99d05e10d9611102e7aa715ad /core
parent1a2475227b6777e016ec931ddae533437bfbb2dd (diff)
parent9332c8c266d0734193961b43d9a03ebcb5364204 (diff)
downloadnextcloud-server-75268860fcac2afd1c3a77d0a4ac58ef8db0e9c9.tar.gz
nextcloud-server-75268860fcac2afd1c3a77d0a4ac58ef8db0e9c9.zip
Merge pull request #15626 from owncloud/remove-tooltip-fade
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) {