Module

Halogen.Aff.Util

Package
purescript-halogen
Repository
slamdata/purescript-halogen

#awaitLoad Source

awaitLoad :: forall eff. Aff (dom :: DOM | eff) Unit

Waits for the document to load.

#awaitBody Source

awaitBody :: forall eff. Aff (dom :: DOM | eff) HTMLElement

Waits for the document to load and then finds the body element.

#selectElement Source

selectElement :: forall eff. QuerySelector -> Aff (dom :: DOM | eff) (Maybe HTMLElement)

Tries to find an element in the document.

#runHalogenAff Source

runHalogenAff :: forall x eff. Aff (HalogenEffects eff) x -> Eff (HalogenEffects eff) Unit

Runs an Aff value of the type commonly used by Halogen components. Any unhandled errors will be re-thrown as exceptions.