Making the navigation transition page style

Reviewed By: hedgerwang

Differential Revision: D3499189

fbshipit-source-id: 809096e7f0f51c241b88d642704d09da259da4b3
This commit is contained in:
Nivetha Singara Vadivelu 2016-06-29 14:50:54 -07:00 committed by Facebook Github Bot 1
parent cf7b4e74f0
commit 8b57f078de
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ class NavigationPagerPanResponder extends NavigationAbstractPanResponder {
return (
Math.abs(gesture[axis]) > RESPOND_THRESHOLD &&
distance > 0 &&
index > 0
index >= 0
);
}