diff --git a/lib/cone.js b/lib/cone.js new file mode 100644 index 00000000000..27e86fada2c --- /dev/null +++ b/lib/cone.js @@ -0,0 +1,11 @@ +/** +* Copyright 2012-2018, Plotly, Inc. +* All rights reserved. +* +* This source code is licensed under the MIT license found in the +* LICENSE file in the root directory of this source tree. +*/ + +'use strict'; + +module.exports = require('../src/traces/cone'); diff --git a/lib/index-gl3d.js b/lib/index-gl3d.js index 1f88b3af373..f908d4e5756 100644 --- a/lib/index-gl3d.js +++ b/lib/index-gl3d.js @@ -13,7 +13,8 @@ var Plotly = require('./core'); Plotly.register([ require('./scatter3d'), require('./surface'), - require('./mesh3d') + require('./mesh3d'), + require('./cone') ]); module.exports = Plotly; diff --git a/lib/index.js b/lib/index.js index 7c88c7977a2..4d014421b61 100644 --- a/lib/index.js +++ b/lib/index.js @@ -26,7 +26,7 @@ Plotly.register([ require('./scatter3d'), require('./surface'), require('./mesh3d'), - require('../src/traces/cone'), + require('./cone'), require('./scattergeo'), require('./choropleth'),