From eaa62484d738875042dbf2900e4510794a1f20a6 Mon Sep 17 00:00:00 2001 From: Justin Willis Date: Fri, 13 Jan 2017 13:24:21 -0600 Subject: [PATCH] fix(nav): fixes #9558 (#9767) --- 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 894394add04..72f1e7f07c6 100644 --- a/src/navigation/nav-controller-base.ts +++ b/src/navigation/nav-controller-base.ts @@ -975,7 +975,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());