@@ -2042,7 +2042,7 @@ axes.drawOne = function(gd, ax, opts) {
2042
2042
2043
2043
if ( ! ax . visible ) return ;
2044
2044
2045
- var transFn = axes . makeTransTickFn ( ax ) ;
2045
+ var transTickFn = axes . makeTransTickFn ( ax ) ;
2046
2046
var transTickLabelFn = ax . ticklabelmode === 'period' ?
2047
2047
axes . makeTransPeriodFn ( ax ) :
2048
2048
axes . makeTransTickFn ( ax ) ;
@@ -2092,13 +2092,13 @@ axes.drawOne = function(gd, ax, opts) {
2092
2092
counterAxis : counterAxis ,
2093
2093
layer : plotinfo . gridlayer . select ( '.' + axId ) ,
2094
2094
path : gridPath ,
2095
- transFn : transFn
2095
+ transFn : transTickFn
2096
2096
} ) ;
2097
2097
axes . drawZeroLine ( gd , ax , {
2098
2098
counterAxis : counterAxis ,
2099
2099
layer : plotinfo . zerolinelayer ,
2100
2100
path : gridPath ,
2101
- transFn : transFn
2101
+ transFn : transTickFn
2102
2102
} ) ;
2103
2103
}
2104
2104
}
@@ -2135,7 +2135,7 @@ axes.drawOne = function(gd, ax, opts) {
2135
2135
vals : tickVals ,
2136
2136
layer : mainAxLayer ,
2137
2137
path : tickPath ,
2138
- transFn : transFn
2138
+ transFn : transTickFn
2139
2139
} ) ;
2140
2140
2141
2141
if ( ax . mirror === 'allticks' ) {
@@ -2155,7 +2155,7 @@ axes.drawOne = function(gd, ax, opts) {
2155
2155
vals : tickVals ,
2156
2156
layer : plotinfo [ axLetter + 'axislayer' ] ,
2157
2157
path : spTickPath ,
2158
- transFn : transFn
2158
+ transFn : transTickFn
2159
2159
} ) ;
2160
2160
}
2161
2161
@@ -2187,7 +2187,7 @@ axes.drawOne = function(gd, ax, opts) {
2187
2187
cls : axId + 'tick2' ,
2188
2188
repositionOnUpdate : true ,
2189
2189
secondary : true ,
2190
- transFn : transFn ,
2190
+ transFn : transTickFn ,
2191
2191
labelFns : axes . makeLabelFns ( ax , mainLinePosition + standoff * tickSigns [ 4 ] )
2192
2192
} ) ;
2193
2193
} ) ;
@@ -2199,7 +2199,7 @@ axes.drawOne = function(gd, ax, opts) {
2199
2199
vals : dividerVals ,
2200
2200
layer : mainAxLayer ,
2201
2201
path : axes . makeTickPath ( ax , mainLinePosition , tickSigns [ 4 ] , ax . _depth ) ,
2202
- transFn : transFn
2202
+ transFn : transTickFn
2203
2203
} ) ;
2204
2204
} ) ;
2205
2205
} else if ( ax . title . hasOwnProperty ( 'standoff' ) ) {
0 commit comments