summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--core/js/js.js21
1 files changed, 9 insertions, 12 deletions
diff --git a/core/js/js.js b/core/js/js.js
index 3f1934241fb..0fb491d67cc 100644
--- a/core/js/js.js
+++ b/core/js/js.js
@@ -638,18 +638,15 @@ $(document).ready(function(){
});
var setShowPassword = function(input, label) {
- // 'show password' checkbox
- setTimeout(function() {
- input.showPassword().keyup(function(){
- if (input.val().length == 0) {
- label.hide();
- }
- else {
- label.css("display", "inline").show();
- }
- });
- },200);
- label.hide();
+ input.showPassword().keyup(function(){
+ if (input.val().length == 0) {
+ label.hide();
+ }
+ else {
+ label.css("display", "inline").show();
+ }
+ });
+ label.hide();
};
setShowPassword($('#password'), $('label[for=show]'));
setShowPassword($('#adminpass'), $('label[for=show]'));