don't start incremental search on Space or Shift-Space
This commit is contained in:
parent
3cb9cbb862
commit
34f899fc45
|
@ -86,7 +86,8 @@ onDOMready().then(() => {
|
||||||
$('#search').focus();
|
$('#search').focus();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (ctrl || inTextInput) {
|
if (ctrl || inTextInput ||
|
||||||
|
key === ' ' && !input.value /* Space or Shift-Space is for page down/up */) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
const time = performance.now();
|
const time = performance.now();
|
||||||
|
|
Loading…
Reference in New Issue
Block a user