view src/app/notebook-feed/notebook-feed.component.html @ 402:f9d5006f76e1

Change curve component to not render vertical scale / highlight by default. Delegate to child TrackComponent for that work, so the curve can be used like tracks, notes etc.
author Lucas Thompson <dev@lucas.im>
date Fri, 02 Jun 2017 19:10:47 +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>