diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2015-04-15 09:10:21 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2015-04-15 09:10:21 +0200 |
commit | 9332c8c266d0734193961b43d9a03ebcb5364204 (patch) | |
tree | cdc3c14778bc84776948515db6a019b7a4193a09 /settings | |
parent | 2a683369526e33ea495ecce47a8de812f3320bc2 (diff) | |
download | nextcloud-server-9332c8c266d0734193961b43d9a03ebcb5364204.tar.gz nextcloud-server-9332c8c266d0734193961b43d9a03ebcb5364204.zip |
remove slow fade animation for tipsy tooltip
Diffstat (limited to 'settings')
-rw-r--r-- | settings/js/users/users.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/js/users/users.js b/settings/js/users/users.js index 4b46bbf898f..a6aeb4ffb5c 100644 --- a/settings/js/users/users.js +++ b/settings/js/users/users.js @@ -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); /** |