Mercurial > hg > ugly-duckling
view src/app/notebook-feed/notebook-feed.component.html @ 201:d179cf7df697
First attempt at the feed containing items. Currently breaks analyses into distinct, separated segments, based on each item marked as root.
author | Lucas Thompson <dev@lucas.im> |
---|---|
date | Fri, 24 Mar 2017 11:07:26 +0000 |
parents | a50feba0d7f0 |
children | 1db0bb28688b |
line wrap: on
line source
<template ngFor let-item [ngForOf]="analyses"> <div [class.break]="item.isRoot"> <ugly-analysis-item [timeline]="item.hasSharedTimeline ? sharedTimeline : undefined" [title]="item.title" [description]="item.description" [isActive]="rootAudioUri === item.rootAudioUri" [isRoot]="item.isRoot"></ugly-analysis-item> </div> </template>