1
0
Fork 0
web/js/man.js

15 lines
373 B
JavaScript

window.onload = () => {
const msg = document.querySelector("#message");
msg.innerHTML = "Manual page henri(1)";
document.onkeydown = (e) => {
e = e || window.event;
switch (e.keyCode) {
case 74:
window.scrollBy(0, msg.clientHeight); break;
case 75:
window.scrollBy(0, -msg.clientHeight); break;
default: break;
}
}
};