add symbol and color on broadcasted events

This commit is contained in:
eouia 2017-07-06 11:57:16 +02:00
parent 8893df118e
commit 561ae102fb

View File

@ -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);
}