Compare commits

...

2 Commits

1 changed files with 3 additions and 1 deletions

View File

@ -115,6 +115,8 @@ function showresult()
recent = 7;
}
var recentonly = params.get("recentonly");
var html = "<h1>Evénements à venir</h1>";
html += `<h3>${formatdate(new Date)}</h3>`;
html += `<div>En gras: modifié les ${recent} derniers jours</div>`;
@ -132,7 +134,7 @@ function showresult()
var group = {};
o.VEVENTS
.filter(e => e.DTSTART >= (new Date))
.filter(e => e.DTSTART >= (new Date) && (!recentonly || e.DTSTAMP >= lastmodified))
.sort( (a,b) => a.DTSTART - b.DTSTART)
.forEach(e => {
var formatteddate = formatdate(e.DTSTART);