aboutsummaryrefslogtreecommitdiffstats
path: root/template/standard/rsrc/main.js
diff options
context:
space:
mode:
authorThomas Lange <code@nerdmind.de>2017-03-20 22:10:01 +0100
committerThomas Lange <code@nerdmind.de>2017-03-20 22:10:01 +0100
commit37cf85eb36f14d5d6520e3e27f813edb8c4b6738 (patch)
tree9fccb9775715addf2d7149ed290d345c5644a2b3 /template/standard/rsrc/main.js
parente33c245d910e55b8cab407a03e669470509a705d (diff)
downloadblog-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/main.js')
-rw-r--r--template/standard/rsrc/main.js16
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