From 3a6660d97ac3678aed9f44a82febee77f2bb422e Mon Sep 17 00:00:00 2001 From: Travis CI Date: Wed, 23 Sep 2015 18:32:02 +0000 Subject: [PATCH] update website --- docs/panresponder.html | 2 +- docs/touchablehighlight.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/panresponder.html b/docs/panresponder.html index e7bda90f477..cccd4531643 100644 --- a/docs/panresponder.html +++ b/docs/panresponder.html @@ -5,7 +5,7 @@ recognize simple multi-touch gestures.

It provides a predictable wrapper o For each handler, it provides a new gestureState object alongside the normal event.

A gestureState object has the following:

Basic Usage #

componentWillMount: function() { - this._panGesture = PanResponder.create({ + this._panResponder = PanResponder.create({ // Ask to be the responder: onStartShouldSetPanResponder: (evt, gestureState) => true, onStartShouldSetPanResponderCapture: (evt, gestureState) => true, diff --git a/docs/touchablehighlight.html b/docs/touchablehighlight.html index 7f2fb86903a..a3f5fc569bd 100644 --- a/docs/touchablehighlight.html +++ b/docs/touchablehighlight.html @@ -12,7 +12,7 @@ backgroundColor of the wrapped view isn't explicitly set to an opaque color /> </TouchableHighlight> ); -},

Edit on GitHubProps #

activeOpacity number #

Determines what the opacity of the wrapped view should be when touch is +},

NOTE: TouchableHighlight supports only one child

If you wish to have to have several child components, wrap them in a View.

Edit on GitHubProps #

activeOpacity number #

Determines what the opacity of the wrapped view should be when touch is active.

onHideUnderlay function #

Called immediately after the underlay is hidden

onShowUnderlay function #

Called immediately after the underlay is shown

underlayColor string #

The color of the underlay that will show through when the touch is active.

Next →