summaryrefslogtreecommitdiffstats
path: root/core/js/js.js
diff options
context:
space:
mode:
Diffstat (limited to 'core/js/js.js')
-rw-r--r--core/js/js.js10
1 files changed, 1 insertions, 9 deletions
diff --git a/core/js/js.js b/core/js/js.js
index b7f7ff1ac15..c17e3fa2959 100644
--- a/core/js/js.js
+++ b/core/js/js.js
@@ -746,15 +746,7 @@ $(document).ready(function(){
});
var setShowPassword = function(input, label) {
- input.showPassword().keyup(function(){
- if (input.val().length == 0) {
- label.hide();
- }
- else {
- label.css("display", "inline").show();
- }
- });
- label.hide();
+ input.showPassword().keyup();
};
setShowPassword($('#adminpass'), $('label[for=show]'));
setShowPassword($('#pass2'), $('label[for=personal-show]'));