module AXOEvents: sig
.. end
This module provides ways to tamper with events. One can use common cases at
the end of the module as example.
exception Cannot_destruct of exn
module type PARAMS = sig
.. end
module Make:
val get_target : JSOO.obj -> JSOO.obj
get_target evt
get the DOM node originaly associated to the event.
val get_current_target : JSOO.obj -> JSOO.obj
get_current_target evt
get the DOM node
currently associated to the event
val stop_propagation : JSOO.obj -> JSOO.obj
stop_propagation evt
prevent the event for going up in the DOM tree.
module Onclick: Make
(
sig
end
)
module Mouse_up: Make
(
sig
end
)
module Mouse_down: Make
(
sig
end
)