Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c8eb205

Browse files
committed
remove Scene and Gl3dLayout from internal Plotly
1 parent 01ab620 commit c8eb205

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/plotly.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,15 @@ var Plots = exports.Plots = require('./plots/plots');
3737

3838
var Cartesian = require('./plots/cartesian');
3939
Plots.registerSubplot(Cartesian);
40+
4041
exports.Axes = require('./plots/cartesian/axes');
4142
exports.Fx = require('./plots/cartesian/graph_interact');
4243

4344
var Geo = require('./plots/geo');
4445
Plots.registerSubplot(Geo);
45-
exports.Scene = require('./plots/gl3d/scene');
46-
exports.Gl3dLayout = require('./plots/gl3d/layout');
46+
47+
var Gl3d = require('./plots/gl3d');
48+
Plots.registerSubplot(Gl3d);
4749

4850
var Gl2d = require('./plots/gl2d');
4951
Plots.registerSubplot(Gl2d);

0 commit comments

Comments
 (0)