diff options
Diffstat (limited to 'template/standard/rsrc/main.js')
-rw-r--r-- | template/standard/rsrc/main.js | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/template/standard/rsrc/main.js b/template/standard/rsrc/main.js new file mode 100644 index 0000000..4a336e2 --- /dev/null +++ b/template/standard/rsrc/main.js @@ -0,0 +1,16 @@ + +//============================================================================== +// Elements which contains the location of the previous and next site +//============================================================================== +var prev = document.getElementById("prev-site"); +var 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")); + } +}, false);
\ No newline at end of file |