fix(range): set ticks to an empty array to prevent errors

This commit is contained in:
Brandy Carney
2016-08-03 17:41:49 -04:00
parent 69169c5fc5
commit 7a2ad99029

View File

@ -210,7 +210,7 @@ export class Range implements AfterViewInit, ControlValueAccessor, OnDestroy {
private _active: RangeKnob; private _active: RangeKnob;
private _start: Coordinates = null; private _start: Coordinates = null;
private _rect: ClientRect; private _rect: ClientRect;
private _ticks: any[]; private _ticks: any[] = [];
private _barL: string; private _barL: string;
private _barR: string; private _barR: string;