This is an automated email from the ASF dual-hosted git repository.
git-site-role pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/comdev-events-site.git
The following commit(s) were added to refs/heads/asf-site by this push:
new a0201c2 Updated asf-site from main at
e4c3e05a7cdfa0959f6ef16b869c659e3d95636b
a0201c2 is described below
commit a0201c282d12479ca00f741b931a8f85e03fb96a
Author: jenkins <[email protected]>
AuthorDate: Tue Sep 16 16:22:06 2025 +0000
Updated asf-site from main at e4c3e05a7cdfa0959f6ef16b869c659e3d95636b
Built from
https://ci-builds.apache.org/job/Community%20Development/job/events-site/job/main/175/
---
content/js/events-calendar.js | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/content/js/events-calendar.js b/content/js/events-calendar.js
index 1036993..db1fc24 100644
--- a/content/js/events-calendar.js
+++ b/content/js/events-calendar.js
@@ -53,7 +53,10 @@ $.ajax({
html += ev.summary;
}
if (link) { html += "</a>"; }
- html += " - <i>" + when + "</i>";
+ html += " - <a href='" + ev.htmlLink + "'><i>" + when +
"</i></a>";
+ if (ev.description && !link) { // add description if not already
used
+ html += "<br/>" + ev.description;
+ }
if (ev.location) {
html += "<br/>"+ev.location;
}