diff --git a/angular/src/providers/nav-controller.ts b/angular/src/providers/nav-controller.ts index 88052d8d01..1d0e309b6c 100644 --- a/angular/src/providers/nav-controller.ts +++ b/angular/src/providers/nav-controller.ts @@ -107,6 +107,8 @@ function getAnimation(direction: RouterDirection, animated: boolean | undefined, } if (direction === 'forward' || direction === 'back') { return direction; + } else if (direction === 'root' && animated === true) { + return 'forward'; } return undefined; }