diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2021-04-07 19:07:42 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-07 19:07:42 -0400 |
commit | e444141511b6d06c4bfe370febc5e3c5bff30e3d (patch) | |
tree | 3845af5f232e9d7b5fe2338c6e0c573a3a339235 /ext/js/display | |
parent | e14b52ef84be7feeab60167605fd10918a242cd3 (diff) |
Fix autofocus sometimes not working on the search page (#1597)
Diffstat (limited to 'ext/js/display')
-rw-r--r-- | ext/js/display/search-main.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/js/display/search-main.js b/ext/js/display/search-main.js index 5ad50500..056d4788 100644 --- a/ext/js/display/search-main.js +++ b/ext/js/display/search-main.js @@ -26,7 +26,7 @@ (async () => { try { - const documentFocusController = new DocumentFocusController(); + const documentFocusController = new DocumentFocusController('#search-textbox'); documentFocusController.prepare(); await yomichan.prepare(); |