aboutsummaryrefslogtreecommitdiff
path: root/ext/mixed/js/display.js
diff options
context:
space:
mode:
authorsiikamiika <siikamiika@users.noreply.github.com>2019-10-26 01:26:56 +0300
committersiikamiika <siikamiika@users.noreply.github.com>2019-10-26 01:26:56 +0300
commita716a52cab143ae2e02b54c2f075a8731de16193 (patch)
tree75947b4efcda91e821e82b8528559bbafdb87c1a /ext/mixed/js/display.js
parent43ddffeb7a21df1453df64aaeeffb4debcd9d85f (diff)
make non-hotkey keys focus input on search page
The issue was that scanning on search page introduced a way to lose focus of the query input, and the new feature that the search page hotkey focuses an existing search page instead of opening a new one made it more obvious. Now every key that isn't a hotkey focuses the query input, and typing text into the box scrolls it into view in case it wasn't there when searching. There is an accessibility issue that this can cause, because now tab also focuses the query input before it focuses the next element. I didn't implement a workaround for that because it would have been more complicated than this simple fix. Fixes #263
Diffstat (limited to 'ext/mixed/js/display.js')
-rw-r--r--ext/mixed/js/display.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/mixed/js/display.js b/ext/mixed/js/display.js
index b40228b0..bdc5e962 100644
--- a/ext/mixed/js/display.js
+++ b/ext/mixed/js/display.js
@@ -157,8 +157,10 @@ class Display {
const handler = handlers[key];
if (handler(this, e)) {
e.preventDefault();
+ return true;
}
}
+ return false;
}
onWheel(e) {