Merge pull request #15632 from owncloud/remove-tooltip-fade
remove slow fade animation for remaining tipsy tooltips
This commit is contained in:
commit
14b92c3ce6
|
@ -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 {
|
||||
|
|
|
@ -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')){
|
||||
|
|
|
@ -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) {
|
||||
|
|
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue