From b701b0e6b06b83e6c2e5636e53cd1ec58282305c Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Mon, 9 Apr 2012 15:35:46 -0700 Subject: [PATCH] Blur username/password on submit. --- guacamole/src/main/webapp/index.xhtml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/guacamole/src/main/webapp/index.xhtml b/guacamole/src/main/webapp/index.xhtml index bc253126e..68926d9c8 100644 --- a/guacamole/src/main/webapp/index.xhtml +++ b/guacamole/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(); }