From 20f48debb63237c5d914a09a61d6ba7905957f62 Mon Sep 17 00:00:00 2001 From: Nicolas Charpentier Date: Thu, 21 Jul 2016 14:47:37 -0700 Subject: [PATCH] Fix broken links in Handling Touches documentation Summary: Fixes #8943. Closes https://github.com/facebook/react-native/pull/8948 Differential Revision: D3601794 Pulled By: hramos fbshipit-source-id: 559ed4796505a28797b0ac6c094a961c61ef88b4 --- docs/HandlingTouches.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/HandlingTouches.md b/docs/HandlingTouches.md index 9839c8a7d..d351f6911 100644 --- a/docs/HandlingTouches.md +++ b/docs/HandlingTouches.md @@ -10,7 +10,7 @@ previous: images Users interact with mobile apps mainly through touch. They can use a combination of gestures, such as tapping on a button, scrolling a list, or zooming on a map. -React Native provides components to handle common gestures, such as taps and swipes, as well as a comprehensive [gesture responder system](/react-native/docs/gesturerespondersystem.html) to allow for more advanced gesture recognition. +React Native provides components to handle common gestures, such as taps and swipes, as well as a comprehensive [gesture responder system](/react-native/docs/gesture-responder-system.html) to allow for more advanced gesture recognition. ## Tappable Components @@ -64,4 +64,4 @@ A ScrollView with a single item can be used to allow the user to zoom content. S ## Handling additional gestures -If you want to allow a user to drag a view around the screen, or you want to implement your own custom pan/drag gesture, take a look at the [PanResponder](/react-native/docs/panresponder.html) API or the [gesture responder system docs](/react-native/docs/gesturerespondersystem.html). +If you want to allow a user to drag a view around the screen, or you want to implement your own custom pan/drag gesture, take a look at the [PanResponder](/react-native/docs/panresponder.html) API or the [gesture responder system docs](/react-native/docs/gesture-responder-system.html).