We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
s
1 parent b7f4621 commit d406c7cCopy full SHA for d406c7c
src/theme/searcher/searcher.js
@@ -316,7 +316,7 @@ window.search = window.search || {};
316
317
// Eventhandler for keyevents on `document`
318
function globalKeyHandler(e) {
319
- if (e.altKey || e.ctrlKey || e.metaKey || e.shiftKey || e.target.type === 'textarea' || e.target.type === 'text') { return; }
+ if (e.altKey || e.ctrlKey || e.metaKey || e.shiftKey || e.target.type === 'textarea' || e.target.type === 'text' || !hasFocus() && /^(?:input|select|textarea)$/i.test(e.target.nodeName)) { return; }
320
321
if (e.keyCode === ESCAPE_KEYCODE) {
322
e.preventDefault();
0 commit comments