Module Incr_dom.Start_app
val start : ?debug:bool -> ?stop:unit Async_kernel.Deferred.t -> bind_to_element_with_id:string -> initial_model:'model -> (module App_intf.S with type Model.t = 'model) -> unit
start
initializes a new application, including starting up Async and waiting for the initial creation of the DOM.bind_to_element_with_id
determines which element the UI will be bound in to. In other words, the DOM returned byApp.view
will replace that element.The application loop kicked off by
start
runs primarily in response to therequest_animation_frame
events kicked off by the browser, but it will also run approximately once a second, even ifrequest_animation_frame
never runs, as is the case in some browsers when the pane an application is running in is in the background.