Skip to content

Commit 594ada6

Browse files
committed
fix for cartesian interact noCi test
1 parent 360213e commit 594ada6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/plots/cartesian/dragbox.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -729,7 +729,9 @@ function makeDragBox(gd, plotinfo, x, y, w, h, ns, ew) {
729729

730730
function pushActiveAxIdsSynced(axList, axisType) {
731731
for(i = 0; i < axList.length; i++) {
732-
if(!axList[i].fixedrange && axList[i][axisType]) {activeAxIds.push(axList[i][axisType]._id);}
732+
var axListI = axList[i];
733+
var axListIType = axListI[axisType];
734+
if(!axListI.fixedrange && axListIType.tickmode === 'sync') activeAxIds.push(axListIType._id);
733735
}
734736
}
735737

0 commit comments

Comments
 (0)