File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -2003,7 +2003,7 @@ plots.doCalcdata = function(gd, traces) {
2003
2003
}
2004
2004
}
2005
2005
2006
- var hasCategoryAxis = plots . initCategories ( axList ) ;
2006
+ var hasCategoryAxis = initCategories ( axList ) ;
2007
2007
2008
2008
var hasCalcTransform = false ;
2009
2009
@@ -2039,7 +2039,7 @@ plots.doCalcdata = function(gd, traces) {
2039
2039
axList [ i ] . _categories = [ ] ;
2040
2040
axList [ i ] . _categoriesMap = { } ;
2041
2041
}
2042
- plots . initCategories ( axList ) ;
2042
+ initCategories ( axList ) ;
2043
2043
}
2044
2044
2045
2045
// 'regular' loop
@@ -2085,7 +2085,7 @@ plots.doCalcdata = function(gd, traces) {
2085
2085
}
2086
2086
} ;
2087
2087
2088
- plots . initCategories = function ( axList ) {
2088
+ function initCategories ( axList ) {
2089
2089
var hasCategoryAxis = false ;
2090
2090
2091
2091
// initialize the category list, if there is one, so we start over
@@ -2103,7 +2103,7 @@ plots.initCategories = function(axList) {
2103
2103
}
2104
2104
2105
2105
return hasCategoryAxis ;
2106
- } ;
2106
+ }
2107
2107
2108
2108
plots . rehover = function ( gd ) {
2109
2109
if ( gd . _fullLayout . _rehover ) {
You can’t perform that action at this time.
0 commit comments