mirror of
https://github.com/zotero/zotero.git
synced 2026-09-16 23:41:08 +00:00
fx-compat: Scaffold: Fix type-to-find not receiving ' '
This commit is contained in:
parent
1aebad3c19
commit
ac8db7a376
1 changed files with 2 additions and 2 deletions
|
|
@ -37,8 +37,8 @@ var Scaffold_Load = new function() {
|
|||
window.close();
|
||||
});
|
||||
|
||||
listbox.addEventListener('keydown', (e) => {
|
||||
if (e.key == ' ') {
|
||||
listbox.addEventListener('keypress', (e) => {
|
||||
if (e.key == ' ' && e.target == listbox) {
|
||||
e.preventDefault();
|
||||
}
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue