Browse Source

Update ref-05-events.md

use backticks and change example into its own sentence
main
Rafal Dittwald 10 years ago
parent
commit
373233c440
  1. 4
      docs/ref-05-events.md

4
docs/ref-05-events.md

@ -35,7 +35,9 @@ String type
## Supported Events ## Supported Events
React normalizes events so that they have consistent properties across React normalizes events so that they have consistent properties across
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: onClick -> onClickCapture). 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 ### Clipboard Events

Loading…
Cancel
Save