aboutsummaryrefslogtreecommitdiff
path: root/module
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2020-03-23 01:10:12 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2020-03-23 01:10:12 +0100
commit84e4b164aa795db5b85e313f44c55ff3a2fca170 (patch)
treef66b4a8b1f3405e7ee87b0acd65215832583c496 /module
parentMinor cleanup. (diff)
downloadcalp-84e4b164aa795db5b85e313f44c55ff3a2fca170.tar.gz
calp-84e4b164aa795db5b85e313f44c55ff3a2fca170.tar.xz
Remove scroll-snap.
Diffstat (limited to 'module')
-rw-r--r--module/output/html.scm10
1 files changed, 6 insertions, 4 deletions
diff --git a/module/output/html.scm b/module/output/html.scm
index 50203652..02a6709a 100644
--- a/module/output/html.scm
+++ b/module/output/html.scm
@@ -160,10 +160,12 @@
" continuing"))
(style ,style))
(div (@ (class "event-inner"))
- (div (@ (class "popup"))
- ,(event-debug-html ev))
- (div (@ (class "body"))
- ,((summary-filter) ev (attr ev 'SUMMARY))))))
+ ;; NOTE These popup's are far from good. Main problem being that
+ ;; the often render off-screen for events high up on the screen.
+ (div (@ (class "popup"))
+ ,(event-debug-html ev))
+ (div (@ (class "body"))
+ ,((summary-filter) ev (attr ev 'SUMMARY))))))
)