From 90de853cc1d06ec22b2a291ab76131a178aa17b5 Mon Sep 17 00:00:00 2001 From: dmmiller Date: Mon, 23 Nov 2015 18:19:58 +0000 Subject: [PATCH] Update GestureResponderSystem.md Update to reflect the reality of what pageX and pageY are on both platforms. --- docs/GestureResponderSystem.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/GestureResponderSystem.md b/docs/GestureResponderSystem.md index fac70d0d2..2c8327435 100644 --- a/docs/GestureResponderSystem.md +++ b/docs/GestureResponderSystem.md @@ -51,8 +51,8 @@ If the view is responding, the following handlers can be called: + `identifier` - The ID of the touch + `locationX` - The X position of the touch, relative to the element + `locationY` - The Y position of the touch, relative to the element - + `pageX` - The X position of the touch, relative to the screen - + `pageY` - The Y position of the touch, relative to the screen + + `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 + `touches` - Array of all current touches on the screen