summaryrefslogtreecommitdiffstats
path: root/settings/js/users/users.js
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2017-01-13 14:01:15 +0100
committerChristoph Wurst <christoph@winzerhof-wurst.at>2017-01-13 14:01:15 +0100
commitc70b3f0e465c3ef577445e51eda094018ece2bfc (patch)
tree89c714321ec3dd4a8e7df06502e7aa17956ce03d /settings/js/users/users.js
parent622101f2dd43f618fa278976e38df8541f145bb6 (diff)
downloadnextcloud-server-c70b3f0e465c3ef577445e51eda094018ece2bfc.tar.gz
nextcloud-server-c70b3f0e465c3ef577445e51eda094018ece2bfc.zip
use tooltip in user list
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'settings/js/users/users.js')
-rw-r--r--settings/js/users/users.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/settings/js/users/users.js b/settings/js/users/users.js
index 0e3067db7c7..a2ccc059f15 100644
--- a/settings/js/users/users.js
+++ b/settings/js/users/users.js
@@ -704,9 +704,9 @@ $(document).ready(function () {
blurFunction = _.bind(blurFunction, $input);
if(isRestoreDisabled) {
$tr.addClass('row-warning');
- // add tipsy if the password change could cause data loss - no recovery enabled
- $input.tipsy({gravity:'s'});
+ // add tooltip if the password change could cause data loss - no recovery enabled
$input.attr('title', t('settings', 'Changing the password will result in data loss, because data recovery is not available for this user'));
+ $input.tooltip({placement:'bottom'});
}
$td.find('img').hide();
$td.children('span').replaceWith($input);