view tests/ctextboxAttrs.ur @ 2168:544199d8b14a

Fix termination bug in tutorial's isEven/isOdd
author Adam Chlipala <adam@chlipala.net>
date Sun, 09 Aug 2015 11:14:09 -0400
parents 2e01a36701eb
children
line wrap: on
line source
fun main () : transaction page =
    s <- source "Initial";
    return <xml><body>
      <ctextbox source={s} onclick={fn ev => alert ("Clicky " ^ show ev.ScreenX)}
                           onkeypress={fn ev => alert ("Code " ^ show ev.KeyCode)}/>
    </body></xml>