view tests/keyEvent.ur @ 2276:c05f9a5e0f0f

Progress on free paths, but consolidation seems to fail more with them.
author Ziv Scully <ziv@mit.edu>
date Mon, 09 Nov 2015 13:37:31 -0500
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>