Mercurial > hg > ugly-duckling
view src/app/notebook-feed/notebook-feed.component.html @ 454:f93582c38b70
Don't dispose of old audio when loading new audio files. Also move resource manager type out of audio-player.
author | Lucas Thompson <dev@lucas.im> |
---|---|
date | Thu, 29 Jun 2017 20:08:11 +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>