Formatting
This commit is contained in:
parent
626c486bc5
commit
6fe3824bda
1 changed files with 12 additions and 11 deletions
23
scene.scm
23
scene.scm
|
@ -112,16 +112,17 @@
|
|||
(define square (~ (* (! counter) (! counter))))
|
||||
|
||||
(define root-ref
|
||||
(sxml->dom-ref `(div (@ (class "foo"))
|
||||
(p "this is a test")
|
||||
(button (@ (id "button")
|
||||
(type "button")
|
||||
(click ,(lambda (e)
|
||||
(! counter (1+ (! counter)))
|
||||
;; Hacky hack to ensure root-ref isn't GC'd too early...
|
||||
(display root-ref))))
|
||||
"Counter: "
|
||||
,counter)
|
||||
(p "The square is: " ,square))))
|
||||
(sxml->dom-ref
|
||||
`(div (@ (class "foo"))
|
||||
(p "this is a test")
|
||||
(button (@ (id "button")
|
||||
(type "button")
|
||||
(click ,(lambda (e)
|
||||
(! counter (1+ (! counter)))
|
||||
;; Hacky hack to ensure root-ref isn't GC'd too early...
|
||||
(display root-ref))))
|
||||
"Counter: "
|
||||
,counter)
|
||||
(p "The square is: " ,square))))
|
||||
|
||||
(append-child! (document-body) (element-ref-element root-ref))
|
||||
|
|
Loading…
Reference in a new issue