File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -787,9 +787,9 @@ export function keyframes(steps: AnimationStyleMetadata[]): AnimationKeyframesSe
787
787
* <button (click)="next()">Next</button>
788
788
* <hr>
789
789
* <div [@bannerAnimation]="selectedIndex" class="banner-container">
790
- * <div class="banner"> {{ banner }} </div>
790
+ * <div class="banner" *ngFor="let banner of banners" > {{ banner }} </div>
791
791
* </div>
792
- * `
792
+ * `,
793
793
* animations: [
794
794
* trigger('bannerAnimation', [
795
795
* transition(":increment", group([
@@ -809,7 +809,7 @@ export function keyframes(steps: AnimationStyleMetadata[]): AnimationKeyframesSe
809
809
* query(':leave', [
810
810
* animate('0.5s ease-out', style({ left: '100%' }))
811
811
* ])
812
- * ])),
812
+ * ]))
813
813
* ])
814
814
* ]
815
815
* })
You can’t perform that action at this time.
0 commit comments