view src/app/notebook-feed/notebook-feed.component.html @ 282:5ab9e6132424

Create independent Timeline for each rootAudioUri, no idea how this was working before. Not sure if these belong here or in the application state, but this is better than before.
author Lucas Thompson <dev@lucas.im>
date Thu, 04 May 2017 15:21:52 +0100
parents 53ea6406d601
children a2ba82a51115
line wrap: on
line source
<ng-template ngFor let-item [ngForOf]="analyses">
  <div [class.break]="item.isRoot">
    <ugly-analysis-item
      [timeline]="getOrCreateTimeline(item)"
      [isActive]="rootAudioUri === item.rootAudioUri"
      [item]="item"
    ></ugly-analysis-item>
  </div>
</ng-template>