Mercurial > urweb
view tests/keyEvent.ur @ 2010:403f0cc65b9c
New lessSafeFfi
author | Adam Chlipala <adam@chlipala.net> |
---|---|
date | Fri, 02 May 2014 19:19:09 -0400 |
parents | 5bc4fbf9c0fe |
children |
line wrap: on
line source
fun main () : transaction page = return <xml><body> <ctextbox onkeypress={fn ev => alert ("KeyCode = " ^ show ev.KeyCode ^ "\nCtrlKey = " ^ show ev.CtrlKey ^ "\nShiftKey = " ^ show ev.ShiftKey ^ "\nAltKey = " ^ show ev.AltKey ^ "\nMetaKey = " ^ show ev.MetaKey)}/> </body></xml>