view src/app/notebook-feed/notebook-feed.component.html @ 367:f967cb22a37a

Clear when updating, not functional difference in this app as it stands because components only receive inputs once atm.
author Lucas Thompson <dev@lucas.im>
date Tue, 30 May 2017 18:19:55 +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>