Skip to content

Commit

Permalink
Merge pull request #2622 from rafd/patch-1
Browse files Browse the repository at this point in the history
add note re: handling events in capture phase
  • Loading branch information
zpao committed Dec 3, 2014
1 parent a4d2e97 commit 5dd855c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docs/docs/ref-05-events.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@ 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.


### Clipboard Events
Expand Down

0 comments on commit 5dd855c

Please sign in to comment.