diff --git a/docs/docs/ref-05-events.md b/docs/docs/ref-05-events.md index d3aa3027eb..4a91244543 100644 --- a/docs/docs/ref-05-events.md +++ b/docs/docs/ref-05-events.md @@ -37,7 +37,7 @@ string type ## Supported Events React normalizes events so that they have consistent properties across -different browsers. +different browsers. The event handlers below are triggered by an event in the bubbling phase. To register an event handler for the capture phase, append `Capture` to the event name; for example, instead of using `onClick`, you would use `onClickCapture` to handle the click event in the capture phase. @@ -198,3 +198,11 @@ Number deltaX Number deltaY Number deltaZ ``` + +### Image Events + +Event names: + +``` +onLoad onError +```