Skip to content

Commit

Permalink
fix(range): set ticks to an empty array to prevent errors
Browse files Browse the repository at this point in the history
  • Loading branch information
brandyscarney committed Aug 3, 2016
1 parent 69169c5 commit 7a2ad99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/range/range.ts
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ export class Range implements AfterViewInit, ControlValueAccessor, OnDestroy {
private _active: RangeKnob;
private _start: Coordinates = null;
private _rect: ClientRect;
private _ticks: any[];
private _ticks: any[] = [];
private _barL: string;
private _barR: string;

Expand Down

0 comments on commit 7a2ad99

Please sign in to comment.