[ReactNative] Fix ScrollView.scrollTo()

This commit is contained in:
Christopher Chedeau 2015-03-13 10:41:57 -07:00
parent b2bf4b88bf
commit 2b38a70e9c
1 changed files with 1 additions and 1 deletions

View File

@ -183,7 +183,7 @@ var ScrollView = React.createClass({
scrollTo: function(destY, destX) {
RKUIManager.scrollTo(
ReactIOSTagHandles.rootNodeIDToTag[this._rootNodeID],
this.getNodeHandle(),
destX || 0,
destY || 0
);