diff options
author | Maxence Lange <maxence@nextcloud.com> | 2017-07-26 16:05:31 +0200 |
---|---|---|
committer | Maxence Lange <maxence@nextcloud.com> | 2017-07-26 16:05:31 +0200 |
commit | a8f4b33cd5a51e5945661a51a196686ded285b8c (patch) | |
tree | e242d754f0ee8c77cd707071a624ebd88a6d1d99 /core/js | |
parent | 174cd4f478b0c555a23ddb5de3aedae3aac82220 (diff) | |
download | nextcloud-server-a8f4b33cd5a51e5945661a51a196686ded285b8c.tar.gz nextcloud-server-a8f4b33cd5a51e5945661a51a196686ded285b8c.zip |
This fix the overlay of the complexity bar
Signed-off-by: Maxence Lange <maxence@nextcloud.com>
Diffstat (limited to 'core/js')
-rw-r--r-- | core/js/jquery-showpassword.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/js/jquery-showpassword.js b/core/js/jquery-showpassword.js index 5d518c78bcb..fc9de2170f9 100644 --- a/core/js/jquery-showpassword.js +++ b/core/js/jquery-showpassword.js @@ -74,7 +74,7 @@ // Create clone var $clone = cloneElement($input); - $clone.insertAfter($input); + $clone.insertBefore($input); // Set callback arguments if(callback.fn){ |