Skip to content

Commit af9285a

Browse files
committed
add heatmapgl to main bundle
1 parent 0fc99c6 commit af9285a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

lib/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ Plotly.register([
3131

3232
require('./scattergl'),
3333
require('./pointcloud'),
34+
require('./heatmapgl'),
3435

3536
require('./scattermapbox'),
3637

src/traces/heatmapgl/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ HeatmapGl.basePlotModule = require('../../plots/gl2d');
2424
HeatmapGl.categories = ['gl2d', '2dMap'];
2525
HeatmapGl.meta = {
2626
description: [
27-
'WebGL heatmap (beta)'
27+
'WebGL version of the heatmap trace type.'
2828
].join(' ')
2929
};
3030

test/jasmine/tests/gl2d_scatterplot_contour_test.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,8 @@ var Plotly = require('@lib/index');
44
var Lib = require('@src/lib');
55
var d3 = require('d3');
66

7-
// heatmapgl & contourgl is not part of the dist plotly.js bundle initially
7+
// contourgl is not part of the dist plotly.js bundle initially
88
Plotly.register([
9-
require('@lib/heatmapgl'),
109
require('@lib/contourgl')
1110
]);
1211

0 commit comments

Comments
 (0)