fix #9 #15

Merged
provod merged 3 commits from NightFox/HLRTest:master into master 2024-02-16 01:30:18 +01:00
Showing only changes of commit 3da9283b42 - Show all commits

View File

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