Truncate event title

This commit is contained in:
Kristof Rado 2020-05-28 10:09:34 +02:00
parent 447c0bffdc
commit 52aa8b868a

View File

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