Skip to content

Commit b8bfab5

Browse files
committed
Add baseline for new mock and fix syntax
1 parent e56020d commit b8bfab5

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/plots/plots.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1957,18 +1957,18 @@ plots.autoMargin = function(gd, id, o) {
19571957

19581958
plots.redrawWithShift = function(gd) {
19591959
if('_redrawFromAutoMarginCount' in gd._fullLayout) {
1960-
return false
1960+
return false;
19611961
}
1962-
var axList = axisIDs.list(gd, '', true)
1962+
var axList = axisIDs.list(gd, '', true);
19631963
var isShift = false;
19641964
for(var ax in axList) {
1965-
if(isShift === true){
1965+
if(isShift === true) {
19661966
return isShift;
19671967
}
1968-
isShift = axList[ax].shift
1968+
isShift = axList[ax].shift;
19691969
}
1970-
return isShift
1971-
}
1970+
return isShift;
1971+
};
19721972

19731973
plots.doAutoMargin = function(gd) {
19741974
var fullLayout = gd._fullLayout;
47.7 KB
Loading

0 commit comments

Comments
 (0)