bonus ALT+F for focus at filter input

This commit is contained in:
NightFox 2024-02-16 02:38:37 +03:00
parent a25dee6640
commit 3da9283b42

View File

@ -671,6 +671,16 @@ window.onload = () => {
} }
} }
}); });
document.addEventListener("keydown", function(event) {
if (event.altKey) {
if (event.key === 'f') {
event.preventDefault();
filter.focus();
}
}
});
} }