From e8357d31e7cb3629ebde78653e3345fd7997df41 Mon Sep 17 00:00:00 2001
From: Thomas Lange <code@nerdmind.de>
Date: Tue, 15 May 2018 01:06:06 +0200
Subject: Rename function parameter "event" to "e"

---
 template/standard/rsrc/main.js | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

(limited to 'template/standard')

diff --git a/template/standard/rsrc/main.js b/template/standard/rsrc/main.js
index a7a424c..6d088e3 100644
--- a/template/standard/rsrc/main.js
+++ b/template/standard/rsrc/main.js
@@ -7,9 +7,9 @@ const 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"));
+document.addEventListener("keyup", function(e) {
+	if(!e.ctrlKey && !e.shiftKey) {
+		(e.keyCode === 37 && prev) && (window.location.href = prev.getAttribute("href"));
+		(e.keyCode === 39 && next) && (window.location.href = next.getAttribute("href"));
 	}
 }, false);
\ No newline at end of file
-- 
cgit v1.2.3