Mercurial > hg > ugly-duckling
view src/app/notebook-feed/notebook-feed.component.html @ 350:524f5cd75737
Split AnalysisItem out into individual types for root audio items and features. This is messy as is, these need revising and should perhaps be actual concrete types with methods.
author | Lucas Thompson <dev@lucas.im> |
---|---|
date | Fri, 26 May 2017 12:59:41 +0100 |
parents | d17d5038b11a |
children | 7bb0bac6f8dc |
line wrap: on
line source
<div class="feed"> <ng-template ngFor let-item [ngForOf]="analyses"> <div [class.break]="isAudioItem(item)"> <ugly-analysis-item [timeline]="getOrCreateTimeline(item)" [isActive]="isActiveItem(item)" [item]="item" [contentWidth]="width" [onSeek]="getOnSeekForItem(item)" ></ugly-analysis-item> </div> </ng-template> </div>