Module
React.Basic.DOM.Events
- Package
- purescript-react-basic-dom
- Repository
- lumihq/purescript-react-basic-dom
This module defines safe DOM event function and property accessors.
#capture Source
capture :: forall a. EventFn SyntheticEvent a -> (a -> Effect Unit) -> EventHandler
Create a capturing* EventHandler
to send an action when an event occurs. For
more complicated event handlers requiring Effect
, use handler
from React.Basic.Events
.
*calls preventDefault
and stopPropagation
See also: update
, capture_
, monitor
, React.Basic.Events
#capture_ Source
capture_ :: Effect Unit -> EventHandler
Like capture
, but for actions which don't need to extract information from the Event.
See also: update
, capture
, monitor_
#dataTransfer Source
dataTransfer :: EventFn SyntheticEvent (Maybe DataTransfer)
Drag event fields