aboutsummaryrefslogtreecommitdiffstats
path: root/template/standard/rsrc/main.js
diff options
context:
space:
mode:
Diffstat (limited to 'template/standard/rsrc/main.js')
-rw-r--r--template/standard/rsrc/main.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/template/standard/rsrc/main.js b/template/standard/rsrc/main.js
index 6d088e3..f73d061 100644
--- a/template/standard/rsrc/main.js
+++ b/template/standard/rsrc/main.js
@@ -8,7 +8,7 @@ const next = document.getElementById("next-site");
// Handle arrow keys and change the location to the desired direction
//==============================================================================
document.addEventListener("keyup", function(e) {
- if(!e.ctrlKey && !e.shiftKey) {
+ if(!e.ctrlKey && !e.shiftKey && !e.altKey) {
(e.keyCode === 37 && prev) && (window.location.href = prev.getAttribute("href"));
(e.keyCode === 39 && next) && (window.location.href = next.getAttribute("href"));
}