From 48c18985cc7ecf2c1e098f57008f3421c4375471 Mon Sep 17 00:00:00 2001 From: cexbrayat Date: Tue, 25 Jul 2017 14:40:59 +0200 Subject: [PATCH] fix(animations): fix increment/decrement aliases example (#18323) PR Close #18323 --- packages/animations/src/animation_metadata.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/animations/src/animation_metadata.ts b/packages/animations/src/animation_metadata.ts index 15b6e4b007..78851f1bc6 100755 --- a/packages/animations/src/animation_metadata.ts +++ b/packages/animations/src/animation_metadata.ts @@ -787,9 +787,9 @@ export function keyframes(steps: AnimationStyleMetadata[]): AnimationKeyframesSe * *
* - * ` + * `, * animations: [ * trigger('bannerAnimation', [ * transition(":increment", group([ @@ -809,7 +809,7 @@ export function keyframes(steps: AnimationStyleMetadata[]): AnimationKeyframesSe * query(':leave', [ * animate('0.5s ease-out', style({ left: '100%' })) * ]) - * ])), + * ])) * ]) * ] * })