mirror of
https://github.com/reactjs/react.dev.git
synced 2026-02-23 20:23:08 +00:00
Update stale event docs in tutorial
The example uses onSubmit but the docs were still referring to onKeyUp.
This commit is contained in:
@@ -483,7 +483,7 @@ var CommentForm = React.createClass({
|
||||
|
||||
#### Events
|
||||
|
||||
React attaches event handlers to components using a camelCase naming convention. We attach an onKeyUp handler to the text field, check if the user has entered text and pressed the enter key and then clear the form fields.
|
||||
React attaches event handlers to components using a camelCase naming convention. We attach an onSubmit handler to the form that clear the form fields if the user has entered text in both.
|
||||
|
||||
`React.autoBind()` is a simple way to ensure that a method is always bound to its component. Inside the method, `this` will be bound to the component instance.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user