view src/app/notebook-feed/notebook-feed.component.html @ 232:77ada2e07997

Setup feed for OnPush strategy and pass single items to children
author Lucas Thompson <dev@lucas.im>
date Mon, 24 Apr 2017 16:39:32 +0100
parents 1c1cc4ec183c
children 53ea6406d601
line wrap: on
line source

<template ngFor let-item [ngForOf]="analyses">
  <div [class.break]="item.isRoot">
    <ugly-analysis-item
      [timeline]="item.hasSharedTimeline ? sharedTimeline : undefined"
      [isActive]="rootAudioUri === item.rootAudioUri"
      [item]="item"
    ></ugly-analysis-item>
  </div>
</template>