Mercurial > urweb
view tests/reactive4.ur @ 1412:5f4fee8a4dcd
Allow CSS class specification for <form>
author | Adam Chlipala <adam@chlipala.net> |
---|---|
date | Sun, 23 Jan 2011 11:18:24 -0500 |
parents | bb8463c3b712 |
children |
line wrap: on
line source
fun main () : transaction page = x <- source <xml>TEST</xml>; return <xml><body> <dyn signal={y <- signal x; return <xml>!{y}?</xml>}/> <br/> <a onclick={set x <xml>CHANGEUP</xml>}>Oh My</a> </body></xml>