From 52aa8b868a205af3c0737c59c8474041b736804c Mon Sep 17 00:00:00 2001 From: Kristof Rado Date: Thu, 28 May 2020 10:09:34 +0200 Subject: [PATCH] Truncate event title --- 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 d93f570c..3a23978f 100755 --- a/modules/default/calendar/calendar.js +++ b/modules/default/calendar/calendar.js @@ -396,7 +396,7 @@ Module.register("calendar", { var descCell = document.createElement("td"); descCell.className = "location"; descCell.colSpan = "2"; - descCell.innerHTML = event.location; + descCell.innerHTML = this.titleTransform(event.location); locationRow.appendChild(descCell); wrapper.appendChild(locationRow);