diff options
author | Thomas Lange <code@nerdmind.de> | 2017-03-20 22:10:01 +0100 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2017-03-20 22:10:01 +0100 |
commit | 37cf85eb36f14d5d6520e3e27f813edb8c4b6738 (patch) | |
tree | 9fccb9775715addf2d7149ed290d345c5644a2b3 /template/standard/rsrc | |
parent | e33c245d910e55b8cab407a03e669470509a705d (diff) | |
download | blog-37cf85eb36f14d5d6520e3e27f813edb8c4b6738.tar.gz blog-37cf85eb36f14d5d6520e3e27f813edb8c4b6738.tar.xz blog-37cf85eb36f14d5d6520e3e27f813edb8c4b6738.zip |
The javascript part was outsourced to a new file to reduce duplicate code.
Diffstat (limited to 'template/standard/rsrc')
-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 |