From 173499f496f0543fc9e802a514d4faf6922a0032 Mon Sep 17 00:00:00 2001 From: Parnic Date: Sat, 5 May 2018 08:31:58 -0500 Subject: [PATCH] Fixed coloredSymbolOnly --- modules/default/calendar/calendar.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/default/calendar/calendar.js b/modules/default/calendar/calendar.js index 2e5d4515a9..79571fa954 100644 --- a/modules/default/calendar/calendar.js +++ b/modules/default/calendar/calendar.js @@ -146,7 +146,7 @@ Module.register("calendar", { var symbolWrapper = document.createElement("td"); if (this.config.colored && this.config.coloredSymbolOnly) { - symbolWrapper.style.cssText = "color:" + this.colorForUrl(event.ulr); + symbolWrapper.style.cssText = "color:" + this.colorForUrl(event.url); } symbolWrapper.className = "symbol align-right";