Clear password fields after changing password
[blerg.git] / 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();