summaryrefslogtreecommitdiffstats
path: root/core/js/jquery-showpassword.js
diff options
context:
space:
mode:
authorMorris Jobke <morris.jobke@gmail.com>2013-04-19 10:06:18 +0200
committerMorris Jobke <morris.jobke@gmail.com>2013-04-19 10:06:18 +0200
commit938b12236ad934c9222b9c4fd2d1beaf9a0a4418 (patch)
treee2c4572598a1cb1c749f05a319d852abdbc3eb83 /core/js/jquery-showpassword.js
parent38941a61bf105a601200e378409bc2078a070994 (diff)
downloadnextcloud-server-938b12236ad934c9222b9c4fd2d1beaf9a0a4418.tar.gz
nextcloud-server-938b12236ad934c9222b9c4fd2d1beaf9a0a4418.zip
modify password clone to password type right on submit to prevent the browser remind the content
Diffstat (limited to 'core/js/jquery-showpassword.js')
-rw-r--r--core/js/jquery-showpassword.js11
1 files changed, 10 insertions, 1 deletions
diff --git a/core/js/jquery-showpassword.js b/core/js/jquery-showpassword.js
index 9cdc48efe89..e1737643b48 100644
--- a/core/js/jquery-showpassword.js
+++ b/core/js/jquery-showpassword.js
@@ -103,7 +103,16 @@
$clone.bind('blur', function() { $input.trigger('focusout'); });
setState( $checkbox, $input, $clone );
-
+
+ // set type of password field clone (type=text) to password right on submit
+ // to prevent browser save the value of this field
+ $clone.closest('form').submit(function(e) {
+ // .prop has to be used, because .attr throws
+ // an error while changing a type of an input
+ // element
+ $clone.prop('type', 'password');
+ });
+
if( callback.fn ){
callback.fn( callback.args );
}