Add 'onMoveShouldSetResponderCapture' to 'propTypes'
Summary: Closes https://github.com/facebook/react-native/pull/3777 Reviewed By: svcscm Differential Revision: D2602708 Pulled By: javache fb-gh-sync-id: 8259ffd4cdd3d0c052e94ac50a9020d6da59ded7
This commit is contained in:
parent
c69c862b9e
commit
97f9aa842c
|
@ -178,7 +178,6 @@ var View = React.createClass({
|
||||||
* `TouchableHighlight` or `TouchableOpacity`. Check out `Touchable.js`,
|
* `TouchableHighlight` or `TouchableOpacity`. Check out `Touchable.js`,
|
||||||
* `ScrollResponder.js` and `ResponderEventPlugin.js` for more discussion.
|
* `ScrollResponder.js` and `ResponderEventPlugin.js` for more discussion.
|
||||||
*/
|
*/
|
||||||
onMoveShouldSetResponder: PropTypes.func,
|
|
||||||
onResponderGrant: PropTypes.func,
|
onResponderGrant: PropTypes.func,
|
||||||
onResponderMove: PropTypes.func,
|
onResponderMove: PropTypes.func,
|
||||||
onResponderReject: PropTypes.func,
|
onResponderReject: PropTypes.func,
|
||||||
|
@ -187,6 +186,8 @@ var View = React.createClass({
|
||||||
onResponderTerminationRequest: PropTypes.func,
|
onResponderTerminationRequest: PropTypes.func,
|
||||||
onStartShouldSetResponder: PropTypes.func,
|
onStartShouldSetResponder: PropTypes.func,
|
||||||
onStartShouldSetResponderCapture: PropTypes.func,
|
onStartShouldSetResponderCapture: PropTypes.func,
|
||||||
|
onMoveShouldSetResponder: PropTypes.func,
|
||||||
|
onMoveShouldSetResponderCapture: PropTypes.func,
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Invoked on mount and layout changes with
|
* Invoked on mount and layout changes with
|
||||||
|
|
Loading…
Reference in New Issue