diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2015-04-15 14:42:45 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2015-04-15 14:42:45 +0200 |
commit | 14b92c3ce642f7ea177dbaf0953a6f6c8b12a7ca (patch) | |
tree | ce116901f1dfc5ec67b032d5db2d647461cd5cae /core | |
parent | 75268860fcac2afd1c3a77d0a4ac58ef8db0e9c9 (diff) | |
parent | 04ca5b8160ad4442f385c6cacc47b269e8b57993 (diff) | |
download | nextcloud-server-14b92c3ce642f7ea177dbaf0953a6f6c8b12a7ca.tar.gz nextcloud-server-14b92c3ce642f7ea177dbaf0953a6f6c8b12a7ca.zip |
Merge pull request #15632 from owncloud/remove-tooltip-fade
remove slow fade animation for remaining tipsy tooltips
Diffstat (limited to 'core')
-rw-r--r-- | core/js/share.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/js/share.js b/core/js/share.js index f22a6a78cfd..2eae6fa49a2 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -1180,7 +1180,7 @@ $(document).ready(function() { } else { expirationDateField.attr('original-title', result.data.message); } - expirationDateField.tipsy({gravity: 'n', fade: true}); + expirationDateField.tipsy({gravity: 'n'}); expirationDateField.tipsy('show'); expirationDateField.addClass('error'); } else { |