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

index f22a6a78cfdadc1c9d5e81cb807b073b87d4df98..2eae6fa49a25425365eb2411c58115558ea64888 100644 (file)
@@ -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 {
index 1e27c1be7e3089d66a5d48b4cfab98f282f81495..34f58db8688f9debdf946b7c733add986bc7ba46 100644 (file)
@@ -39,7 +39,7 @@ $(document).ready(function(){
                } );
        });
 
-       $('#backgroundjobs span.crondate').tipsy({fade: true, gravity: 's', live: true});
+       $('#backgroundjobs span.crondate').tipsy({gravity: 's', live: true});
 
        $('#backgroundjobs input').change(function(){
                if($(this).attr('checked')){
index 43f328d22238996bebdac94e3d132671fcc4c947..687b02399a71cf33b3dff95d505e6f0cea040d0a 100644 (file)
@@ -304,7 +304,7 @@ $(document).ready(function () {
                return true;
        });
 
-       $('#sslCertificate tr > td').tipsy({fade: true, gravity: 'n', live: true});
+       $('#sslCertificate tr > td').tipsy({gravity: 'n', live: true});
 
        $('#rootcert_import').fileupload({
                done: function (e, data) {
index a6aeb4ffb5c97f2b5eee0c70952a8375e1738bcb..5fd4e9d235b86eb379add51611a4859cd878c15b 100644 (file)
@@ -643,7 +643,7 @@ $(document).ready(function () {
                if(isRestoreDisabled) {
                        $tr.addClass('row-warning');
                        // add tipsy if the password change could cause data loss - no recovery enabled
-                       $input.tipsy({gravity:'s', fade:false});
+                       $input.tipsy({gravity:'s'});
                        $input.attr('title', t('settings', 'Changing the password will result in data loss, because data recovery is not available for this user'));
                }
                $td.find('img').hide();