Skip to content

Commit

Permalink
Merge branch 'release/v2.2.5'
Browse files Browse the repository at this point in the history
  • Loading branch information
BigFatDog committed Jan 9, 2019
2 parents e27e0af + 67a3bfe commit 70c1679
Show file tree
Hide file tree
Showing 10 changed files with 41 additions and 16 deletions.
13 changes: 10 additions & 3 deletions dist/parcoords.esm.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/parcoords.esm.js.map

Large diffs are not rendered by default.

13 changes: 10 additions & 3 deletions dist/parcoords.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/parcoords.js.map

Large diffs are not rendered by default.

17 changes: 14 additions & 3 deletions dist/parcoords.standalone.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/parcoords.standalone.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "parcoord-es",
"version": "2.2.4",
"version": "2.2.5",
"description": "ES6 module of Parallel Coordinates, based on d3 v5 modules",
"main": "dist/parcoords.js",
"module": "dist/parcoords.esm.js",
Expand Down
2 changes: 1 addition & 1 deletion src/brush/1d/brushFor.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const brushFor = (state, config, pc, events, brushGroup) => (

// handle hidden axes which will not have a yscale
let yscale = null;
if(config.dimensions.hasOwnProperty(axis)) {
if (config.dimensions.hasOwnProperty(axis)) {
yscale = config.dimensions[axis].yscale;
}

Expand Down
2 changes: 1 addition & 1 deletion src/brush/invertByScale.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const invertCategorical = (selection, scale) => {
};

const invertByScale = (selection, scale) => {
if(scale === null) return [];
if (scale === null) return [];
return typeof scale.invert === 'undefined'
? invertCategorical(selection, scale)
: selection.map(d => scale.invert(d));
Expand Down

0 comments on commit 70c1679

Please sign in to comment.