Skip to content

Commit 16aa4be

Browse files
Lint error fix
1 parent 7a9f1e7 commit 16aa4be

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/plots/cartesian/axes.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2306,10 +2306,10 @@ axes.draw = function(gd, arg, opts) {
23062306
// order axes that have dependency to other axes
23072307
axList.map(function(axId) {
23082308
var ax = axes.getFromId(gd, axId);
2309-
2309+
23102310
if(ax.tickmode === 'sync' && ax.overlaying) {
23112311
var overlayingIndex = axList.findIndex(function(axis) {return axis === ax.overlaying;});
2312-
2312+
23132313
if(overlayingIndex >= 0) {
23142314
axList.unshift(axList.splice(overlayingIndex, 1).shift());
23152315
}

0 commit comments

Comments
 (0)