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.
2 parents a80febd + fb1476d commit 484e5c0Copy full SHA for 484e5c0
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