Mercurial > hg > ugly-duckling
view src/app/notebook-feed/notebook-feed.component.html @ 349:bf038a51f7e3
Restore some of the feature related logic from waveform.component into a utilities module. Introduce some additional types for representing reshaped features. A work in progress.
author | Lucas Thompson <dev@lucas.im> |
---|---|
date | Thu, 25 May 2017 17:57:03 +0100 |
parents | d17d5038b11a |
children | 524f5cd75737 |
line wrap: on
line source
<div class="feed"> <ng-template ngFor let-item [ngForOf]="analyses"> <div [class.break]="item.isRoot"> <ugly-analysis-item [timeline]="getOrCreateTimeline(item)" [isActive]="isActiveItem(item)" [item]="item" [contentWidth]="width" [onSeek]="getOnSeekForItem(item)" ></ugly-analysis-item> </div> </ng-template> </div>