1024" x-on:close-sidebar="sidebar=window.innerWidth > 1024 && true">
Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
type t +=
| Ignore | (*
|
| Viewport_changed | (*
|
| Stop_propagation | (*
|
| Prevent_default | (*
|
| Many of t list | (* Allows one to represent a list of handlers, which will be individually dispatched to their respective handlers. This is so callbacks can return multiple events of whatever kind. *) |
module type Handler = sig ... end
module type Visibility_handler = sig ... end
module type S = sig ... end
For registering a new handler and a corresponding new constructor of the Event.t type
module Define_visibility (VH : Visibility_handler) : sig ... end
For registering a handler for Viewport_changed events. Note that if this functor is called multiple times, each handler will see all of the events.
module Expert : sig ... end