From 9f5ce300dbba1948bc3a9cc948829031f873651e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Sun, 26 Apr 2020 20:35:20 +0200 Subject: Move a on event to inside, around body. --- static/script.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'static') diff --git a/static/script.js b/static/script.js index 274bcb86..494b6266 100644 --- a/static/script.js +++ b/static/script.js @@ -135,7 +135,7 @@ function new_popup (event) { // if (event.target !== this) return; /* popup = this.children[0].children[0] */ - popup = this.parentElement.getElementsByClassName("popup")[0]; + popup = this.parentElement.parentElement.getElementsByClassName("popup")[0]; popup.classList.toggle("show") /* x-axis fix */ @@ -204,6 +204,7 @@ window.onload = function () { days = document.getElementsByClassName("days")[0] for (let e of days.getElementsByClassName("body")) { e.onclick = new_popup; + e.parentElement.href = "#"; } // days.scrollLeft == 0 -- cgit v1.2.3