blob: 9d1f7025f4660a48dcfe3660428c885cd3b0b83f (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* See COPYING file for copyright, license and warranty details. */
(function() {
document.addEventListener('keydown', keybind, false);
})();
function keybind(e) {
if(e.altKey && String.fromCharCode(e.keyCode) == "R")
simplyread();
}
|