From 48f438cb076a3ccd36af5b3dfbbb96c391396774 Mon Sep 17 00:00:00 2001 From: Justin Willis Date: Thu, 22 Dec 2016 15:34:46 -0600 Subject: [PATCH] fix(nav): fixes #9558 --- src/navigation/nav-controller-base.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/navigation/nav-controller-base.ts b/src/navigation/nav-controller-base.ts index 392d9950133..6a5c53e3d2a 100644 --- a/src/navigation/nav-controller-base.ts +++ b/src/navigation/nav-controller-base.ts @@ -973,7 +973,7 @@ export class NavControllerBase extends Ion implements NavController { canSwipeBack(): boolean { return (this._sbEnabled && !this._isPortal && - !this._children.length && + this._children.length <= 1 && !this.isTransitioning() && this._app.isEnabled() && this.canGoBack());