diff options
| author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2019-10-05 22:11:05 -0400 | 
|---|---|---|
| committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2019-10-05 22:11:05 -0400 | 
| commit | 113cc725c1764e5eb814a22ace23a7e7150d016f (patch) | |
| tree | 7f60cf5f6004145496351139e42d4b5c71cfbb5a | |
| parent | cd6d4e7ee14b3bfde9efb76eb65d7ee91c740c77 (diff) | |
Make the window.onresize handler not change focus
| -rw-r--r-- | ext/fg/js/frontend.js | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/ext/fg/js/frontend.js b/ext/fg/js/frontend.js index 3fa70357..4ad78aa7 100644 --- a/ext/fg/js/frontend.js +++ b/ext/fg/js/frontend.js @@ -145,7 +145,7 @@ class Frontend {      }      onResize() { -        this.searchClear(true); +        this.searchClear(false);      }      onClick(e) { |