mirror of
https://github.com/nextcloud/server.git
synced 2026-04-29 01:50:33 -04:00
Merge pull request #15626 from owncloud/remove-tooltip-fade
remove slow fade animation for tipsy tooltip
This commit is contained in:
commit
75268860fc
2 changed files with 11 additions and 11 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in a new issue