We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 999f877 commit 7b22175Copy full SHA for 7b22175
src/plot_api/plot_api.js
@@ -2071,7 +2071,7 @@ function _relayout(gd, aobj) {
2071
// we're editing the (auto)range of, so we can tell the others constrained
2072
// to scale with them that it's OK for them to shrink
2073
var rangesAltered = {};
2074
- var axId, ax;
+ var ax;
2075
2076
function recordAlteredAxis(pleafPlus) {
2077
var axId = Axes.name2id(pleafPlus.split('.')[0]);
@@ -2299,7 +2299,7 @@ function _relayout(gd, aobj) {
2299
}
2300
2301
// figure out if we need to recalculate axis constraints
2302
- for(axId in rangesAltered) {
+ for(var axId in rangesAltered) {
2303
ax = Axes.getFromId(gd, axId);
2304
var group = ax && ax._constraintGroup;
2305
if(group) {
0 commit comments