From a99489d602f4e42b9f18454fc46d949c2b072e0c Mon Sep 17 00:00:00 2001 From: Daniel Calviño Sánchez Date: Sat, 6 Jan 2018 00:13:23 +0100 Subject: Add strengthify bar after plain text input clone of password input MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit To show the password in plain text "showPassword" adds a text input after the password input and swaps their visibility depending on whether the password has to be shown in plain text or not. In a similar way, "strengthify" by default adds the strength bar after the input element it was called on. Due to this, if "showPassword" is called before "strengthify" on the same password input then the strength bar ends between the password input and the text input, and when the text input is shown it appears below the strength bar. To fix this now the strength bar is added after the text input in those places in which "strengthify" was called after "showPassword" on the same element. Signed-off-by: Daniel Calviño Sánchez --- settings/js/personal.js | 1 + 1 file changed, 1 insertion(+) (limited to 'settings') diff --git a/settings/js/personal.js b/settings/js/personal.js index 9193b8e03dd..c5d4396ea88 100644 --- a/settings/js/personal.js +++ b/settings/js/personal.js @@ -384,6 +384,7 @@ $(document).ready(function () { t('settings', 'Strong password') ], drawTitles: true, + $addAfter: $('input[name="newpassword-clone"]'), }); // Load the big avatar -- cgit v1.2.3