From 9ae7c72e876b6418a8a4bce55c1bae9c1ccdff7f Mon Sep 17 00:00:00 2001 From: Bernd Bestel Date: Wed, 5 Jul 2023 21:30:00 +0200 Subject: [PATCH] Unified calendar time format (closes #2266) --- public/viewjs/calendar.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/public/viewjs/calendar.js b/public/viewjs/calendar.js index 8ebdd5fd..5502f156 100644 --- a/public/viewjs/calendar.js +++ b/public/viewjs/calendar.js @@ -17,10 +17,11 @@ var calendar = $("#calendar").fullCalendar({ "eventLimit": false, "height": "auto", "eventSources": fullcalendarEventSources, - eventClick: function(info) + "eventClick": function(info) { location.href = info.link; - } + }, + "timeFormat": "HH:mm" }); $("#ical-button").on("click", function(e)