view src/app/notebook-feed/notebook-feed.component.html @ 456:7bb0bac6f8dc

Add export button for recordings and option to remove audio item (also removes all related analyses atm). Revokes associated object url for audio on removal. Will be problematic if the history is used for undo / redo.
author Lucas Thompson <dev@lucas.im>
date Thu, 29 Jun 2017 20:11:14 +0100
parents 524f5cd75737
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>