diff options
author | Vincent Petry <pvince81@owncloud.com> | 2015-10-07 15:58:37 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2015-10-07 17:56:28 +0200 |
commit | 14dc36efe6326d1f626a41c4295f570a729d57ae (patch) | |
tree | 71c5e7dc22e6bb097d489151b7f815917e8d1d33 /core/vendor | |
parent | cd818e7419fb39d97683ecc5803534b0ed632596 (diff) | |
download | nextcloud-server-14dc36efe6326d1f626a41c4295f570a729d57ae.tar.gz nextcloud-server-14dc36efe6326d1f626a41c4295f570a729d57ae.zip |
Properly hide strengthify after password change
Diffstat (limited to 'core/vendor')
-rw-r--r-- | core/vendor/strengthify/jquery.strengthify.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/vendor/strengthify/jquery.strengthify.js b/core/vendor/strengthify/jquery.strengthify.js index 21f5fa82956..4fcc4d7c7c4 100644 --- a/core/vendor/strengthify/jquery.strengthify.js +++ b/core/vendor/strengthify/jquery.strengthify.js @@ -58,7 +58,7 @@ dataType: 'script', url: options.zxcvbn }).done(function() { - me.bind('keyup input', function() { + me.bind('keyup input change', function() { var password = $(this).val(), // hide strengthigy if no input is provided opacity = (password === '') ? 0 : 1, |