Skip to content

Commit

Permalink
stop exporting doCrossTraceCalc
Browse files Browse the repository at this point in the history
  • Loading branch information
alexcjohnson committed Aug 6, 2018
1 parent ded6e94 commit 0bf82c8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/plots/plots.js
Original file line number Diff line number Diff line change
Expand Up @@ -2551,7 +2551,7 @@ plots.doCalcdata = function(gd, traces) {
for(i = 0; i < fullData.length; i++) calci(i, true);
for(i = 0; i < fullData.length; i++) calci(i, false);

plots.doCrossTraceCalc(gd);
doCrossTraceCalc(gd);

Registry.getComponentMethod('fx', 'calc')(gd);
Registry.getComponentMethod('errorbars', 'calc')(gd);
Expand All @@ -2563,7 +2563,7 @@ function clearAxesCalc(axList) {
}
}

plots.doCrossTraceCalc = function(gd) {
function doCrossTraceCalc(gd) {
var fullLayout = gd._fullLayout;
var modules = fullLayout._visibleModules;
var hash = {};
Expand Down Expand Up @@ -2608,7 +2608,7 @@ plots.doCrossTraceCalc = function(gd) {
}
}
}
};
}

plots.rehover = function(gd) {
if(gd._fullLayout._rehover) {
Expand Down

0 comments on commit 0bf82c8

Please sign in to comment.