From aaa14eb1e93e5936e93647f3725793d3a180b1d1 Mon Sep 17 00:00:00 2001 From: Sercan Yemen Date: Wed, 25 Oct 2017 10:15:19 +0300 Subject: [PATCH] Fixed: Stagger animation doesn't have {optional:true} --- src/app/core/animations.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/core/animations.ts b/src/app/core/animations.ts index 193b9e10..b5ff37d2 100644 --- a/src/app/core/animations.ts +++ b/src/app/core/animations.ts @@ -33,21 +33,21 @@ export const fuseAnimations = [ stagger('50ms', [ animateChild() ]) - ])), + ], {optional: true})), transition('void => 100', query('@*', [ stagger('100ms', [ animateChild() ]) - ])), + ], {optional: true})), transition('void => 200', query('@*', [ stagger('200ms', [ animateChild() ]) - ])) + ], {optional: true})) ]), trigger('fadeInOut', [