Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/React/DOM/Props.purs
Original file line number Diff line number Diff line change
Expand Up @@ -497,6 +497,10 @@ onTransitionEnd :: forall eff props state result.
(Event -> EventHandlerContext eff props state result) -> Props
onTransitionEnd f = unsafeMkProps "onTransitionEnd" (handle f)

onError :: forall eff props state result.
(Event -> EventHandlerContext eff props state result) -> Props
onError f = unsafeMkProps "onError" (handle f)

onLoad :: forall eff props state result.
(Event -> EventHandlerContext eff props state result) -> Props
onLoad f = unsafeMkProps "onLoad" (handle f)
Expand Down