From ac1102e05b55719f99d8899a899cfc79894205aa Mon Sep 17 00:00:00 2001 From: Mike Wilcox Date: Sat, 25 Apr 2015 19:24:50 -0400 Subject: [PATCH] [Navigator] Remove a route from the stack with a pop gesture. --- Libraries/CustomComponents/Navigator/Navigator.js | 1 + 1 file changed, 1 insertion(+) diff --git a/Libraries/CustomComponents/Navigator/Navigator.js b/Libraries/CustomComponents/Navigator/Navigator.js index da4d2ab10f52ca..2e11ecec174cb1 100644 --- a/Libraries/CustomComponents/Navigator/Navigator.js +++ b/Libraries/CustomComponents/Navigator/Navigator.js @@ -736,6 +736,7 @@ var Navigator = React.createClass({ if (transitionVelocity < 0 || this._doesGestureOverswipe(releaseGestureAction)) { this._transitionToFromIndexWithVelocity(transitionVelocity); } else { + this._handlePop(); this._transitionToToIndexWithVelocity(transitionVelocity); } },