summaryrefslogtreecommitdiffstats
path: root/settings
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2015-04-15 12:25:10 +0200
committerJan-Christoph Borchardt <hey@jancborchardt.net>2015-04-15 12:25:10 +0200
commit04ca5b8160ad4442f385c6cacc47b269e8b57993 (patch)
tree64624d3ce8ae1a64e2ba07cb1fce50bdd85fface /settings
parent9332c8c266d0734193961b43d9a03ebcb5364204 (diff)
downloadnextcloud-server-04ca5b8160ad4442f385c6cacc47b269e8b57993.tar.gz
nextcloud-server-04ca5b8160ad4442f385c6cacc47b269e8b57993.zip
remove slow fade animation for remaining tipsy tooltips
Diffstat (limited to 'settings')
-rw-r--r--settings/js/admin.js2
-rw-r--r--settings/js/personal.js2
-rw-r--r--settings/js/users/users.js2
3 files changed, 3 insertions, 3 deletions
diff --git a/settings/js/admin.js b/settings/js/admin.js
index 1e27c1be7e3..34f58db8688 100644
--- a/settings/js/admin.js
+++ b/settings/js/admin.js
@@ -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')){
diff --git a/settings/js/personal.js b/settings/js/personal.js
index 43f328d2223..687b02399a7 100644
--- a/settings/js/personal.js
+++ b/settings/js/personal.js
@@ -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) {
diff --git a/settings/js/users/users.js b/settings/js/users/users.js
index a6aeb4ffb5c..5fd4e9d235b 100644
--- a/settings/js/users/users.js
+++ b/settings/js/users/users.js
@@ -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();