[ReactNative] fix onMoveShouldSetPanResponderCapture

Summary:
Typo in implementation prevented onMoveShouldSetPanResponderCapture from working.
This commit is contained in:
Bill Fisher 2015-07-27 11:46:56 -07:00
parent 842ce51099
commit 3b83853713
1 changed files with 1 additions and 1 deletions

View File

@ -294,7 +294,7 @@ var PanResponder = {
return false;
}
PanResponder._updateGestureStateOnMove(gestureState, touchHistory);
return config.onMoveShouldSetResponderCapture ?
return config.onMoveShouldSetPanResponderCapture ?
config.onMoveShouldSetPanResponderCapture(e, gestureState) : false;
},