Mercurial > hg > ugly-duckling
view src/app/notebook-feed/notebook-feed.component.html @ 477:e3cbf4c53e5e
Rename type and make it an abstract class to stop angular-cli complaining (I still don't understand this).
author | Lucas Thompson <dev@lucas.im> |
---|---|
date | Fri, 30 Jun 2017 16:25:58 +0100 |
parents | 7bb0bac6f8dc |
children |
line wrap: on
line source
<div class="feed"> <ng-template ngFor let-item [ngForOf]="analyses"> <div [class.break]="isAudioItem(item)"> <ugly-analysis-item (remove)="removeItem.emit($event)" [timeline]="getOrCreateTimeline(item)" [isActive]="isActiveItem(item)" [item]="item" [contentWidth]="width" [onSeek]="getOnSeekForItem(item)" ></ugly-analysis-item> </div> </ng-template> </div>