[ReactNative] Fix typo/bug in Navigator._completeTransition

This commit is contained in:
Eric Vicenti
2015-04-07 20:39:55 -07:00
parent d63bf428cd
commit 009f8ebe63

View File

@@ -510,7 +510,7 @@ var Navigator = React.createClass({
this.state.fromIndex = this.state.presentedIndex;
this.state.toIndex = this.state.presentedIndex;
}
this._hideOtherScenes(presentedIndex);
this._hideOtherScenes(this.state.presentedIndex);
},
_transitionToToIndexWithVelocity: function(v) {