remove slow fade animation for tipsy tooltip

This commit is contained in:
Jan-Christoph Borchardt 2015-04-15 09:10:21 +02:00
parent 2a68336952
commit 9332c8c266
2 changed files with 11 additions and 11 deletions

View 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) {

View 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);
/**