diff options
Diffstat (limited to 'core/js/jquery-showpassword.js')
-rw-r--r-- | core/js/jquery-showpassword.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/js/jquery-showpassword.js b/core/js/jquery-showpassword.js index 23ddf947719..5d518c78bcb 100644 --- a/core/js/jquery-showpassword.js +++ b/core/js/jquery-showpassword.js @@ -17,8 +17,8 @@ showPassword: function(c) { // Setup callback object - var callback = {'fn':null,'args':{}} - callback.fn = c; + var callback = {'fn':null,'args':{}}; + callback.fn = c; // Clones passwords and turn the clones into text inputs var cloneElement = function( element ) { @@ -90,7 +90,7 @@ }); $input.bind('keyup', function() { - update( $input, $clone ) + update( $input, $clone ); }); $clone.bind('keyup', function(){ |