From 37cf85eb36f14d5d6520e3e27f813edb8c4b6738 Mon Sep 17 00:00:00 2001 From: Thomas Lange Date: Mon, 20 Mar 2017 22:10:01 +0100 Subject: The javascript part was outsourced to a new file to reduce duplicate code. --- template/standard/rsrc/main.js | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 template/standard/rsrc/main.js (limited to 'template/standard/rsrc/main.js') 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 -- cgit v1.2.3