diff options
author | Lukas Reschke <lukas@owncloud.com> | 2015-10-14 15:09:07 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2015-10-14 15:09:07 +0200 |
commit | a50643ebc92822e7478ddcba61b1ee254f4eb362 (patch) | |
tree | 9955b87d500c2b6b677f20e55d72ac22b5855bd6 /settings/js | |
parent | 718edf7828f4aca86b421678cb3b2548d670b6f7 (diff) | |
download | nextcloud-server-a50643ebc92822e7478ddcba61b1ee254f4eb362.tar.gz nextcloud-server-a50643ebc92822e7478ddcba61b1ee254f4eb362.zip |
Revert "[stable8.2] Properly hide strengthify after password change"
Diffstat (limited to 'settings/js')
-rw-r--r-- | settings/js/personal.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/js/personal.js b/settings/js/personal.js index 3439eba686f..acc1478cd78 100644 --- a/settings/js/personal.js +++ b/settings/js/personal.js @@ -189,7 +189,7 @@ $(document).ready(function () { $.post(OC.generateUrl('/settings/personal/changepassword'), post, function (data) { if (data.status === "success") { $('#pass1').val(''); - $('#pass2').val('').change(); + $('#pass2').val(''); // Hide a possible errormsg and show successmsg $('#password-changed').removeClass('hidden').addClass('inlineblock'); $('#password-error').removeClass('inlineblock').addClass('hidden'); |