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.
1 parent b375f4e commit fb1476dCopy full SHA for fb1476d
src/theme/searcher/searcher.js
@@ -311,7 +311,7 @@ window.search = window.search || {};
311
312
// Eventhandler for keyevents on `document`
313
function globalKeyHandler(e) {
314
- if (e.altKey || e.ctrlKey || e.metaKey || e.shiftKey || e.target.type === 'textarea') { return; }
+ if (e.altKey || e.ctrlKey || e.metaKey || e.shiftKey || e.target.type === 'textarea' || e.target.type === 'text') { return; }
315
316
if (e.keyCode === ESCAPE_KEYCODE) {
317
e.preventDefault();
0 commit comments