Skip to content

Commit

Permalink
removes console.log statement
Browse files Browse the repository at this point in the history
  • Loading branch information
davelandry committed Aug 16, 2016
1 parent bbb0f2f commit 3fb1efa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ScaleLegend.js
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ export default class ScaleLegend extends BaseLegend {
this._d3Scale = scales[`scale${this._scale.charAt(0).toUpperCase()}${this._scale.slice(1)}`]()
.domain(this._domain)
.rangeRound(this._range || [p, p + size]);
console.log(this._tickScale(size));

const ticks = this._ticks || this._d3Scale.ticks(Math.floor(size / this._tickScale(size)));
const values = this._tickLabels || ticks;

Expand Down

0 comments on commit 3fb1efa

Please sign in to comment.