From 7ed529bf2f430eed261b1343db5ac94064ede2e9 Mon Sep 17 00:00:00 2001 From: fcFn Date: Tue, 31 Jan 2017 11:47:41 -0800 Subject: [PATCH] Fix typo in GestureResponderSystem.md Summary: There is only `timestamp `property in touch native event, `event.nativeEvent.timeStamp` is undefined. Closes https://github.com/facebook/react-native/pull/11988 Differential Revision: D4489408 Pulled By: mkonicek fbshipit-source-id: 0148a4107124438f345b8cb584e1832ba51b3a4b --- docs/GestureResponderSystem.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/GestureResponderSystem.md b/docs/GestureResponderSystem.md index 926bffbd3..3f4604577 100644 --- a/docs/GestureResponderSystem.md +++ b/docs/GestureResponderSystem.md @@ -55,7 +55,7 @@ If the view is responding, the following handlers can be called: + `pageX` - The X position of the touch, relative to the root element + `pageY` - The Y position of the touch, relative to the root element + `target` - The node id of the element receiving the touch event - + `timeStamp` - A time identifier for the touch, useful for velocity calculation + + `timestamp` - A time identifier for the touch, useful for velocity calculation + `touches` - Array of all current touches on the screen ### Capture ShouldSet Handlers