From 8f635fec79961b4aaabaab184e9576c5b97122af Mon Sep 17 00:00:00 2001 From: Chip Black Date: Tue, 17 Jun 2014 22:04:57 -0500 Subject: [PATCH] Blur login field after login --- www/jssrc/blerg/Controls.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/www/jssrc/blerg/Controls.js b/www/jssrc/blerg/Controls.js index 21d4a59..0827ff7 100644 --- a/www/jssrc/blerg/Controls.js +++ b/www/jssrc/blerg/Controls.js @@ -88,6 +88,8 @@ enyo.kind({ }, login: function(inSender, inEvent) { this.$.password.setValue(''); + // TODO: Replace with regular blur() call in future enyo + this.$.password.node.blur(); this.setLoggedIn(true); this.$.userlink.setAttribute('href', '/#' + inEvent.username); this.$.userlink.setContent('@' + inEvent.username); -- 2.25.1