From bca1fb6891708dc6cd3c544935588381069ccb62 Mon Sep 17 00:00:00 2001 From: Chip Black Date: Tue, 7 Aug 2012 00:33:14 -0700 Subject: [PATCH] Clear password fields after changing password --- www/jssrc/blerg/PasswdDialog.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/www/jssrc/blerg/PasswdDialog.js b/www/jssrc/blerg/PasswdDialog.js index fc8dde2..449ef37 100644 --- a/www/jssrc/blerg/PasswdDialog.js +++ b/www/jssrc/blerg/PasswdDialog.js @@ -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(); -- 2.25.1