annotate tests/ccheckbox.ur @ 2140:2b0f6b7ebf4f

Add urweb-mode command to close current XML tag Bound to "C-c /" by default to match nxml-mode's nxml-finish-element command.
author Julian Squires <julian@cipht.net>
date Mon, 04 May 2015 16:15:01 -0400
parents 37f5a23446b2
children
rev   line source
adam@1610 1 fun main () : transaction page =
adam@1610 2 s <- source True;
adam@1610 3 t <- source 1;
adam@1610 4 return <xml><body><ccheckbox source={s} onclick={set t 3}/>
adam@1610 5 <dyn signal={s <- signal s;
adam@1610 6 t <- signal t;
adam@1610 7 return <xml>{[s]} {[t]}</xml>}/>
adam@1610 8 </body></xml>