Merge pull request #2622 from rafd/patch-1

add note re: handling events in capture phase
This commit is contained in:
Paul O’Shannessy
2014-12-02 11:10:20 -08:00
+3 -1
View File
@@ -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