Skip to content

Commit

Permalink
fix(angular): pass proper animated value
Browse files Browse the repository at this point in the history
  • Loading branch information
manucorporat committed Jul 28, 2018
1 parent 266336e commit 7813acc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion angular/src/directives/navigation/ion-router-outlet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export class IonRouterOutlet implements OnDestroy, OnInit {

@Input()
set animated(animated: boolean) {
(this.elementRef.nativeElement as HTMLIonRouterOutletElement).animated = true;
(this.elementRef.nativeElement as HTMLIonRouterOutletElement).animated = animated;
}

constructor(
Expand Down

0 comments on commit 7813acc

Please sign in to comment.