Update GestureResponderSystem.md

Update to reflect the reality of what pageX and pageY are on both platforms.
This commit is contained in:
dmmiller 2015-11-23 18:19:58 +00:00
parent 0f3ed2cdb7
commit 90de853cc1

View File

@ -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