comparison src/app/visualisations/vertical-scale.component.ts @ 489:ab43880f1cd5

Rename to something a bit more appropriate.
author Lucas Thompson <dev@lucas.im>
date Wed, 05 Jul 2017 18:52:12 +0100
parents 64ed45a0bad3
children 494e2bb601dc
comparison
equal deleted inserted replaced
488:64ed45a0bad3 489:ab43880f1cd5
32 ) seekable: QueryList<PlayheadRenderer>; 32 ) seekable: QueryList<PlayheadRenderer>;
33 protected cachedRange: any; 33 protected cachedRange: any;
34 34
35 ngAfterViewInit(): void { 35 ngAfterViewInit(): void {
36 this.bounded.forEach(component => { 36 this.bounded.forEach(component => {
37 this.cachedRange = component.range; 37 this.cachedRange = component.labels;
38 if (this.cachedRange) { 38 if (this.cachedRange) {
39 component.renderScale(this.cachedRange); 39 component.renderScale(this.cachedRange);
40 } 40 }
41 }); 41 });
42 } 42 }