aboutsummaryrefslogtreecommitdiff
path: root/module/calp/html/view/calendar/month.scm
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2021-12-10 03:12:36 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2021-12-10 03:12:36 +0100
commit89b7ce2876d2ad818b284ae2204f62c61538b4d2 (patch)
treed535dfa2253cdda6e183c3e40b0627cadf5ea700 /module/calp/html/view/calendar/month.scm
parentAdd various type specifiers. (diff)
downloadcalp-89b7ce2876d2ad818b284ae2204f62c61538b4d2.tar.gz
calp-89b7ce2876d2ad818b284ae2204f62c61538b4d2.tar.xz
Change {start,end}-date to pre-start and post-end.
pre-start and post-end are the real intervals for a given page, since some more days than requested are often shown to make sense of a given layout.
Diffstat (limited to '')
-rw-r--r--module/calp/html/view/calendar/month.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/module/calp/html/view/calendar/month.scm b/module/calp/html/view/calendar/month.scm
index 0e29f5b2..e058a2ec 100644
--- a/module/calp/html/view/calendar/month.scm
+++ b/module/calp/html/view/calendar/month.scm
@@ -80,7 +80,7 @@
;; These popups are relative the document root.
;; Can thus be placed anywhere in the DOM.
,@(for event in (stream->list
- (events-between start-date end-date events))
+ (events-between pre-start post-end events))
`(popup-element
(@ (class "vevent")
(data-uid ,(output-uid event)))))