From 8f41e0f5bd7483421068374c384502318f43dd69 Mon Sep 17 00:00:00 2001 From: Sundog Date: Mon, 9 Sep 2024 11:53:58 -0400 Subject: [PATCH] d --- layout.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/layout.html b/layout.html index 599aacb..854aed4 100644 --- a/layout.html +++ b/layout.html @@ -641,12 +641,14 @@ const previous_day_schedule = (e) => { e.preventDefault(); const day = new Date(e.target.getAttribute("data-day")); + console.dir(day); day.setDate(day.getDate() - 1); init_schedules(day); } const next_day_schedule = (e) => { e.preventDefault(); const day = new Date(e.target.getAttribute("data-day")); + console.dir(day); day.setDate(day.getDate() + 1); init_schedules(day); }