From 57a5d490a6af2f73652b51592d5415c26d0bf771 Mon Sep 17 00:00:00 2001 From: "Manu Mtz.-Almeida" Date: Tue, 27 Mar 2018 21:26:35 +0200 Subject: [PATCH] fix(nav): animated opts --- core/src/components/nav/nav.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/components/nav/nav.tsx b/core/src/components/nav/nav.tsx index 3059ecbd45..6d1edfd406 100644 --- a/core/src/components/nav/nav.tsx +++ b/core/src/components/nav/nav.tsx @@ -660,7 +660,7 @@ export class NavControllerBase implements NavOutlet { } private getAnimationBuilder(opts: NavOptions) { - if (opts.duration === 0 || !this._init || this.animated === false || this._views.length <= 1) { + if (opts.duration === 0 || opts.animate === false || !this._init || this.animated === false || this._views.length <= 1) { return undefined; } const mode = opts.animation || this.config.get('pageTransition', this.mode);