content updates, various fixes

This commit is contained in:
khannurien
2026-04-26 12:57:40 +00:00
parent 8484abea47
commit 1a9f822b56
164 changed files with 82726 additions and 163 deletions

View File

@@ -25,7 +25,10 @@ document.addEventListener('DOMContentLoaded', function () {
}
},
eventDidMount: function (info) {
info.el.title = info.event.title
var parts = [info.event.title]
var props = info.event.extendedProps || {}
if (props.location) parts.push(props.location)
info.el.title = parts.join(' — ')
}
})
cal.render()