diff options
author | Morris Jobke <hey@morrisjobke.de> | 2017-07-27 13:26:17 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-27 13:26:17 +0200 |
commit | 2f153fe4e65291f617fe4a461b7a32dcb323045b (patch) | |
tree | cae08065f82493cfd0b9d6412019327336e69210 /settings | |
parent | 569892d3c07a933bf26035d4fd2090d0d412f6d1 (diff) | |
parent | 1f82223883c3048a441497e45b3ac9f6c4a1b258 (diff) | |
download | nextcloud-server-2f153fe4e65291f617fe4a461b7a32dcb323045b.tar.gz nextcloud-server-2f153fe4e65291f617fe4a461b7a32dcb323045b.zip |
Merge pull request #5896 from nextcloud/12-5895
[stable12] Fix show password button for password change
Diffstat (limited to 'settings')
-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 effce9de07e..5d8a0b8b49e 100644 --- a/settings/js/personal.js +++ b/settings/js/personal.js @@ -168,7 +168,6 @@ $(document).ready(function () { if (data.status === "success") { $("#passwordbutton").after("<span class='checkmark icon icon-checkmark password-state'></span>"); removeloader(); - $(".personal-show-label").show(); $('#pass1').val(''); $('#pass2').val('').change(); } @@ -184,6 +183,7 @@ $(document).ready(function () { } ); } + $(".personal-show-label").show(); $(".password-loading").remove(); $("#passwordbutton").removeAttr('disabled'); }); |