]> source.dussan.org Git - nextcloud-server.git/commitdiff
remove slow fade animation for tipsy tooltip
authorJan-Christoph Borchardt <hey@jancborchardt.net>
Wed, 15 Apr 2015 07:10:21 +0000 (09:10 +0200)
committerJan-Christoph Borchardt <hey@jancborchardt.net>
Wed, 15 Apr 2015 07:10:21 +0000 (09:10 +0200)
core/js/js.js
settings/js/users/users.js

index cb93e73f2e02568d07928a2c2975295945eec951..7604dc2a5b7e300746299a9bd5046818259a8de0 100644 (file)
@@ -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) {
index 4b46bbf898fde38cdcb4d8eeb1ce81e897b5a294..a6aeb4ffb5c97f2b5eee0c70952a8375e1738bcb 100644 (file)
@@ -162,7 +162,7 @@ var UserList = {
                //original title. We use a temporary div to get back the html that we
                //can pass later. It is also required to initialise tipsy.
                var tooltip = $('<div>').html($($tdLastLogin.attr('original-title')).text(lastLoginAbs)).html();
-               $tdLastLogin.tipsy({gravity:'s', fade:true, html:true});
+               $tdLastLogin.tipsy({gravity:'s', html:true});
                $tdLastLogin.attr('title', tooltip);
 
                /**