view src/app/notebook-feed/notebook-feed.component.html @ 285:2d7da410ba46

Introduce width Inputs to analysis items and waveform and observe for Dimension changes in notebook-feed.
author Lucas Thompson <dev@lucas.im>
date Thu, 04 May 2017 17:09:48 +0100
parents a2ba82a51115
children d17d5038b11a
line wrap: on
line source
<div class="feed">
  <ng-template ngFor let-item [ngForOf]="analyses">
    <div [class.break]="item.isRoot">
      <ugly-analysis-item
        [timeline]="getOrCreateTimeline(item)"
        [isActive]="rootAudioUri === item.rootAudioUri"
        [item]="item"
        [contentWidth]="width"
      ></ugly-analysis-item>
    </div>
  </ng-template>
</div>