Mercurial > hg > ugly-duckling
view src/app/visualisations/curve/curve.component.ts @ 362:bcb0a172eca3
Populate item with features when extracted. This should be moved to happen in a subscription.
author | Lucas Thompson <dev@lucas.im> |
---|---|
date | Tue, 30 May 2017 15:08:15 +0100 |
parents | c8a585de46ac |
children | f122bb02c428 |
line wrap: on
line source
/** * Created by lucas on 30/05/2017. */ import {WavesComponent} from "../waves-base.component"; import {ChangeDetectionStrategy, Component} from "@angular/core"; @Component({ selector: 'ugly-curve', // templateUrl: '../waves-template.html', template: `<div #track class="track"><span>Curve</span></div>`, styleUrls: ['../waves-template.css'], changeDetection: ChangeDetectionStrategy.OnPush }) export class CurveComponent extends WavesComponent { }