Clear password fields after changing password
authorChip Black <bytex64@bytex64.net>
Tue, 7 Aug 2012 07:33:14 +0000 (00:33 -0700)
committerChip Black <bytex64@bytex64.net>
Tue, 7 Aug 2012 07:33:14 +0000 (00:33 -0700)
www/jssrc/blerg/PasswdDialog.js

index fc8dde2..449ef37 100644 (file)
@@ -53,6 +53,9 @@ enyo.kind({
         this.hide();
     },
     passwordChangeSuccessful: function(inSender, inEvent) {
+        this.$.oldpassword.setValue('');
+        this.$.password1.setValue('');
+        this.$.password2.setValue('');
         this.$.changeButton.setDisabled(false);
         this.$.spinner.hide();
         this.$.spinner.stop();