diff options
author | Joas Schilling <coding@schilljs.com> | 2017-01-13 16:53:18 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-13 16:53:18 +0100 |
commit | c371e2f5323883a2056bb47ffafffd9b2c07f738 (patch) | |
tree | 90f88bb1dc8ff6e4ccdf23d7225a04124ed64343 | |
parent | 8d8aff1bce5625836d25df897da26fcda31e5d61 (diff) | |
parent | c70b3f0e465c3ef577445e51eda094018ece2bfc (diff) | |
download | nextcloud-server-c371e2f5323883a2056bb47ffafffd9b2c07f738.tar.gz nextcloud-server-c371e2f5323883a2056bb47ffafffd9b2c07f738.zip |
Merge pull request #3062 from nextcloud/user-settings-tooltip
use tooltip in user list
-rw-r--r-- | settings/js/users/users.js | 4 |
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); |