From: Michael Jumper Date: Mon, 9 Apr 2012 22:35:46 +0000 (-0700) Subject: Blur username/password on submit. X-Git-Url: http://git.alex.org.uk Blur username/password on submit. --- diff --git a/src/main/webapp/index.xhtml b/src/main/webapp/index.xhtml index bc25312..68926d9 100644 --- a/src/main/webapp/index.xhtml +++ b/src/main/webapp/index.xhtml @@ -218,6 +218,10 @@ if (xhr.status != 200) throw new Error("Invalid login"); + // Ensure username/password fiels are blurred after submit + username.blur(); + password.blur(); + resetUI(); }