From 561ae102fbeeeef9e78b0e55593a83b74a62efc7 Mon Sep 17 00:00:00 2001 From: eouia Date: Thu, 6 Jul 2017 11:57:16 +0200 Subject: [PATCH] add symbol and color on broadcasted events --- modules/default/calendar/calendar.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/default/calendar/calendar.js b/modules/default/calendar/calendar.js index 9ab864b9..ad6024f9 100644 --- a/modules/default/calendar/calendar.js +++ b/modules/default/calendar/calendar.js @@ -522,6 +522,8 @@ Module.register("calendar", { var calendar = this.calendarData[url]; for (var e in calendar) { var event = cloneObject(calendar[e]); + event.symbol = this.symbolsForUrl(url); + event.color = this.colorForUrl(url); delete event.url; eventList.push(event); }