Skip to content

Commit 13e0449

Browse files
committed
dont use sunburst naming in treemap
1 parent 544977e commit 13e0449

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/traces/treemap/calc.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88

99
'use strict';
1010

11-
var sunburstCalc = require('../sunburst/calc');
11+
var calc = require('../sunburst/calc');
1212

1313
exports.calc = function(gd, trace) {
14-
return sunburstCalc.calc(gd, trace);
14+
return calc.calc(gd, trace);
1515
};
1616

1717
exports.crossTraceCalc = function(gd) {
18-
return sunburstCalc._runCrossTraceCalc('treemap', gd);
18+
return calc._runCrossTraceCalc('treemap', gd);
1919
};

0 commit comments

Comments
 (0)