aboutsummaryrefslogtreecommitdiff
path: root/static/script.js
diff options
context:
space:
mode:
Diffstat (limited to 'static/script.js')
-rw-r--r--static/script.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/static/script.js b/static/script.js
index bc20cb07..dcc7285f 100644
--- a/static/script.js
+++ b/static/script.js
@@ -95,8 +95,15 @@ function update_current_time_bar () {
event_area.append(bar_object)
}
+function toggle_event_pupup () {
+ console.log(this);
+ this.getElementsByClassName("popup")[0].classList.toggle("show");
+}
+
window.onload = function () {
+ console.log("Running");
+ /*
update_current_time_bar()
// once a minute for now, could probably be slowed to every 10 minutes
window.setInterval(update_current_time_bar, 1000 * 60)
@@ -106,4 +113,9 @@ window.onload = function () {
c.onmouseup = onmouseuphandler;
c.onmousemove = onmousemovehandler;
}
+ */
+
+ for (let e of document.getElementsByClassName("event-inner")) {
+ e.onclick = toggle_event_pupup;
+ }
}