bonus ALT+F for focus at filter input
This commit is contained in:
parent
a25dee6640
commit
3da9283b42
@ -671,6 +671,16 @@ window.onload = () => {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
document.addEventListener("keydown", function(event) {
|
||||||
|
if (event.altKey) {
|
||||||
|
if (event.key === 'f') {
|
||||||
|
event.preventDefault();
|
||||||
|
filter.focus();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user