Skip to content

Commit 314db66

Browse files
committed
fix focus username if not set on sign-in
1 parent 9e06e91 commit 314db66

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/data/main_popup.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ function popup(session_store_) {
8080
$('#main').hide();
8181
$('#sessionsetup').show();
8282
if (session_store.username==null)
83-
$('#username').focus();
83+
window.setTimeout(function(){$('#username').focus();},0.1);
8484
else {
8585
$('#username').val(session_store.username);
8686
window.setTimeout(function(){$('#masterkey').focus();},0.1);

0 commit comments

Comments
 (0)