Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxence Lange <maxence@nextcloud.com>2017-07-26 17:18:57 +0300
committerMaxence Lange <maxence@nextcloud.com>2017-07-26 17:18:57 +0300
commitc87002105d5ba971cf5632a6b72de1acb77af9a0 (patch)
tree612a2f3b549f04f539f1ae2bc8c4afa47c3d2b55
parent2902677ccf6932fad27624b73525f336199f3f5e (diff)
fix overlay on show password
Signed-off-by: Maxence Lange <maxence@nextcloud.com>
-rw-r--r--core/js/jquery-showpassword.js2
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){