aboutsummaryrefslogtreecommitdiff
path: root/module/output/html.scm
diff options
context:
space:
mode:
Diffstat (limited to 'module/output/html.scm')
-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))))))
)