From: raghunayyar Date: Tue, 15 Oct 2013 09:11:18 +0000 (+0530) Subject: Removes Bogus showpassword js. thx @PVince81 X-Git-Tag: v6.0.0alpha2~5^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=2def1a8853c68afc0d1adc9f4c89d09387f27c9c;p=nextcloud-server.git Removes Bogus showpassword js. thx @PVince81 --- diff --git a/core/js/js.js b/core/js/js.js index 5178a26e15d..c17e3fa2959 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -746,9 +746,7 @@ $(document).ready(function(){ }); var setShowPassword = function(input, label) { - input.showPassword().keyup(function(){ - label.css("display", "inline").show(); - }); + input.showPassword().keyup(); }; setShowPassword($('#adminpass'), $('label[for=show]')); setShowPassword($('#pass2'), $('label[for=personal-show]'));