From ff4e20e07df59733e86ab1e2dfce735469806047 Mon Sep 17 00:00:00 2001 From: Martti Malmi Date: Tue, 19 May 2020 08:55:14 +0300 Subject: [PATCH] login input focus, add member input width --- src/index.html | 2 +- src/js/app.js | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/index.html b/src/index.html index 95a63d4a..2646f069 100644 --- a/src/index.html +++ b/src/index.html @@ -297,7 +297,7 @@

diff --git a/src/js/app.js b/src/js/app.js index cfc08ec3..c41649fe 100644 --- a/src/js/app.js +++ b/src/js/app.js @@ -614,6 +614,7 @@ function showSwitchAccount(e) { resetView(); $('#create-account').hide(); $('#existing-account-login').show(); + $('#paste-privkey').focus(); } $('#show-create-account').click(showCreateAccount); @@ -623,6 +624,7 @@ function showCreateAccount(e) { $('#create-account').show(); $('#existing-account-login').hide(); cleanupScanner(); + $('#login-form-name').focus(); } $('#existing-account-login input').on('input', (event) => {