diff options
Diffstat (limited to 'template/standard/rsrc/main.js')
-rw-r--r-- | template/standard/rsrc/main.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/template/standard/rsrc/main.js b/template/standard/rsrc/main.js index a7a424c..6d088e3 100644 --- a/template/standard/rsrc/main.js +++ b/template/standard/rsrc/main.js @@ -7,9 +7,9 @@ const next = document.getElementById("next-site"); //============================================================================== // Handle arrow keys and change the location to the desired direction //============================================================================== -document.addEventListener("keyup", function(event) { - if(!event.ctrlKey && !event.shiftKey) { - (event.keyCode === 37 && prev) && (window.location.href = prev.getAttribute("href")); - (event.keyCode === 39 && next) && (window.location.href = next.getAttribute("href")); +document.addEventListener("keyup", function(e) { + if(!e.ctrlKey && !e.shiftKey) { + (e.keyCode === 37 && prev) && (window.location.href = prev.getAttribute("href")); + (e.keyCode === 39 && next) && (window.location.href = next.getAttribute("href")); } }, false);
\ No newline at end of file |