Mercurial > hg > ugly-duckling
view src/app/notebook-feed/notebook-feed.component.html @ 426:8fee76ab8e90
Take a callback as a prop for performing an action when requesting an output
author | Lucas Thompson <dev@lucas.im> |
---|---|
date | Tue, 06 Jun 2017 22:11:59 +0100 |
parents | 524f5cd75737 |
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>