mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-30 13:09:34 +00:00
Truncate event title
This commit is contained in:
parent
447c0bffdc
commit
52aa8b868a
@ -396,7 +396,7 @@ Module.register("calendar", {
|
|||||||
var descCell = document.createElement("td");
|
var descCell = document.createElement("td");
|
||||||
descCell.className = "location";
|
descCell.className = "location";
|
||||||
descCell.colSpan = "2";
|
descCell.colSpan = "2";
|
||||||
descCell.innerHTML = event.location;
|
descCell.innerHTML = this.titleTransform(event.location);
|
||||||
locationRow.appendChild(descCell);
|
locationRow.appendChild(descCell);
|
||||||
|
|
||||||
wrapper.appendChild(locationRow);
|
wrapper.appendChild(locationRow);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user