Projet_SETI_RISC-V/riscv-gnu-toolchain/qemu/docs/sphinx-static/custom.js

10 lines
298 B
JavaScript
Raw Normal View History

2023-03-06 14:48:14 +01:00
document.addEventListener('keydown', (event) => {
// find a better way to look it up?
let search_input = document.getElementsByName('q')[0];
if (event.code === 'KeyS' && document.activeElement !== search_input) {
event.preventDefault();
search_input.focus();
}
});