aboutsummaryrefslogtreecommitdiff
path: root/module/calp/html/vcomponent.scm
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2021-11-18 21:39:49 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2021-11-18 21:39:49 +0100
commit8346e5b938c2a01128e8806dbe2b57e4266c51a2 (patch)
treedd700ad115e6a7272265079e618e63ca1fa5c509 /module/calp/html/vcomponent.scm
parentVarious fixes <date-time-input/> (diff)
downloadcalp-8346e5b938c2a01128e8806dbe2b57e4266c51a2.tar.gz
calp-8346e5b938c2a01128e8806dbe2b57e4266c51a2.tar.xz
Remove .interactive, fix date-time checkbox.
Diffstat (limited to 'module/calp/html/vcomponent.scm')
-rw-r--r--module/calp/html/vcomponent.scm7
1 files changed, 1 insertions, 6 deletions
diff --git a/module/calp/html/vcomponent.scm b/module/calp/html/vcomponent.scm
index b2959df5..23884b58 100644
--- a/module/calp/html/vcomponent.scm
+++ b/module/calp/html/vcomponent.scm
@@ -222,7 +222,7 @@
(h3 (input (@ (type "text")
(placeholder "Sammanfattning")
(name "summary") (required)
- (class "interactive") (data-property "summary")
+ (data-property "summary")
; (value ,(prop ev 'SUMMARY))
)))
@@ -231,14 +231,12 @@
,@(with-label
"Starttid"
'(date-time-input (@ (name "dtstart")
- (class "interactive")
(data-property "dtstart")
)))
,@(with-label
"Sluttid"
'(date-time-input (@ (name "dtend")
- (class "interactive")
(data-property "dtend"))))
(div
@@ -246,7 +244,6 @@
"Heldag?"
`(input (@ (type "checkbox")
(name "wholeday")
- (onclick "wholeday_checkbox(this)")
))))
)
@@ -256,7 +253,6 @@
`(input (@ (placeholder "Plats")
(name "location")
(type "text")
- (class "interactive")
(data-property "location")
; (value ,(or (prop ev 'LOCATION) ""))
)))
@@ -264,7 +260,6 @@
,@(with-label
"Beskrivning"
`(textarea (@ (placeholder "Beskrivning")
- (class "interactive")
(data-property "description")
(name "description"))
; ,(prop ev 'DESCRIPTION)