Skip to content

Commit

Permalink
fix(animations): fix increment/decrement aliases example (#18323)
Browse files Browse the repository at this point in the history
PR Close #18323
  • Loading branch information
cexbrayat authored and alexeagle committed Jan 10, 2018
1 parent 167cbed commit 48c1898
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/animations/src/animation_metadata.ts
Expand Up @@ -787,9 +787,9 @@ export function keyframes(steps: AnimationStyleMetadata[]): AnimationKeyframesSe
* <button (click)="next()">Next</button>
* <hr>
* <div [@bannerAnimation]="selectedIndex" class="banner-container">
* <div class="banner"> {{ banner }} </div>
* <div class="banner" *ngFor="let banner of banners"> {{ banner }} </div>
* </div>
* `
* `,
* animations: [
* trigger('bannerAnimation', [
* transition(":increment", group([
Expand All @@ -809,7 +809,7 @@ export function keyframes(steps: AnimationStyleMetadata[]): AnimationKeyframesSe
* query(':leave', [
* animate('0.5s ease-out', style({ left: '100%' }))
* ])
* ])),
* ]))
* ])
* ]
* })
Expand Down

0 comments on commit 48c1898

Please sign in to comment.