view tests/docevents.ur @ 2136:75c8f8e3f5d0

Ignore manual.out
author Adam Chlipala <adam@chlipala.net>
date Fri, 24 Apr 2015 10:01:56 -0400
parents e8863d9f8c59
children
line wrap: on
line source
fun main () : transaction page = return <xml>
  <body onload={onDblclick (fn _ => alert "Double click");
                onContextmenu (fn _ => alert "Context menu");
                onKeypress (fn k => alert ("Keypress: " ^ show k.KeyCode))}>
    Nothing here.
    </body>
</xml>