Mercurial > urweb
view tests/bodyClick.ur @ 2301:8d772fbf59c1
Tweak cache consolidation and choose better default.
author | Ziv Scully <ziv@mit.edu> |
---|---|
date | Fri, 20 Nov 2015 03:26:21 -0500 |
parents | d857da05f042 |
children |
line wrap: on
line source
fun main () : transaction page = return <xml> <body onclick={fn _ => alert "You clicked the body."} onkeyup={fn _ => alert "Key"}> <p>Text</p> </body> </xml>