From 764ca84e020fd1c764f6233f21729f8855b29dbe Mon Sep 17 00:00:00 2001 From: Hugo Jobling Date: Thu, 18 Jul 2013 11:05:39 +0100 Subject: [PATCH] remove dead link the event handling doc page no longer exists (cherry picked from commit 4ab62a6bd2b38464e129ad95360d9de75c8133b5) --- docs/docs/tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/tutorial.md b/docs/docs/tutorial.md index 01362e8361..ef6c1d0501 100644 --- a/docs/docs/tutorial.md +++ b/docs/docs/tutorial.md @@ -489,7 +489,7 @@ var CommentForm = React.createClass({ React attaches event handlers to components using a camelCase naming convention. We attach an `onSubmit` handler to the form that clears the form fields when the form is submitted with valid input. -We always return `false` from the event handler to prevent the browser's default action of submitting the form. (If you prefer, you can instead take the event as an argument and call `preventDefault()` on it – read more about [event handling](event-handling.html).) +We always return `false` from the event handler to prevent the browser's default action of submitting the form. (If you prefer, you can instead take the event as an argument and call `preventDefault()` on it.) ##### Refs