comparison tests/docevents.ur @ 2130:e8863d9f8c59

New mouse events oncontextmenu, onmouseenter, and onmouseleave.
author Ziv Scully <ziv@mit.edu>
date Tue, 07 Apr 2015 14:18:53 -0400
parents d5c961c709f9
children
comparison
equal deleted inserted replaced
2129:e0843b2a636d 2130:e8863d9f8c59
1 fun main () : transaction page = return <xml> 1 fun main () : transaction page = return <xml>
2 <body onload={onDblclick (alert "Double click"); 2 <body onload={onDblclick (fn _ => alert "Double click");
3 onKeypress (fn k => alert ("Keypress: " ^ show k))}> 3 onContextmenu (fn _ => alert "Context menu");
4 onKeypress (fn k => alert ("Keypress: " ^ show k.KeyCode))}>
4 Nothing here. 5 Nothing here.
5 </body> 6 </body>
6 </xml> 7 </xml>