Skip to content

Commit 0bf82c8

Browse files
committed
stop exporting doCrossTraceCalc
1 parent ded6e94 commit 0bf82c8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/plots/plots.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2551,7 +2551,7 @@ plots.doCalcdata = function(gd, traces) {
25512551
for(i = 0; i < fullData.length; i++) calci(i, true);
25522552
for(i = 0; i < fullData.length; i++) calci(i, false);
25532553

2554-
plots.doCrossTraceCalc(gd);
2554+
doCrossTraceCalc(gd);
25552555

25562556
Registry.getComponentMethod('fx', 'calc')(gd);
25572557
Registry.getComponentMethod('errorbars', 'calc')(gd);
@@ -2563,7 +2563,7 @@ function clearAxesCalc(axList) {
25632563
}
25642564
}
25652565

2566-
plots.doCrossTraceCalc = function(gd) {
2566+
function doCrossTraceCalc(gd) {
25672567
var fullLayout = gd._fullLayout;
25682568
var modules = fullLayout._visibleModules;
25692569
var hash = {};
@@ -2608,7 +2608,7 @@ plots.doCrossTraceCalc = function(gd) {
26082608
}
26092609
}
26102610
}
2611-
};
2611+
}
26122612

26132613
plots.rehover = function(gd) {
26142614
if(gd._fullLayout._rehover) {

0 commit comments

Comments
 (0)