Skip to content

Commit

Permalink
swap (x|y)a -> (x|y)id for clarity
Browse files Browse the repository at this point in the history
  • Loading branch information
etpinard committed Aug 14, 2018
1 parent 9da5a1b commit f3c73db
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/traces/splom/defaults.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,14 +113,14 @@ function handleAxisDefaults(traceIn, traceOut, layout, coerce) {

for(i = 0; i < dimLength; i++) {
var dim = dimensions[i];
var xa = xaxes[i + xShift];
var ya = yaxes[i + yShift];
var xaId = xaxes[i + xShift];
var yaId = yaxes[i + yShift];

fillAxisStash(layout, xa, dim);
fillAxisStash(layout, ya, dim);
fillAxisStash(layout, xaId, dim);
fillAxisStash(layout, yaId, dim);

// note that some the entries here may be undefined
diag[i] = [xa, ya];
diag[i] = [xaId, yaId];
}

// when lower half is omitted, override grid default
Expand Down

0 comments on commit f3c73db

Please sign in to comment.