File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ module.exports = function makeIncludeComponents(containerArrayName) {
26
26
var xaList = subplots . xaxis ;
27
27
var yaList = subplots . yaxis ;
28
28
var cartesianList = subplots . cartesian ;
29
- var hasCartesianOrGL2D = layoutOut . _has ( 'cartesian' ) || layoutOut . _has ( 'gl2d ') ;
29
+ var hasCartesian = layoutOut . _has ( 'cartesian' ) ;
30
30
31
31
for ( var i = 0 ; i < array . length ; i ++ ) {
32
32
var itemi = array [ i ] ;
@@ -40,7 +40,7 @@ module.exports = function makeIncludeComponents(containerArrayName) {
40
40
var hasXref = idRegex . x . test ( xref ) ;
41
41
var hasYref = idRegex . y . test ( yref ) ;
42
42
if ( hasXref || hasYref ) {
43
- if ( ! hasCartesianOrGL2D ) Lib . pushUnique ( layoutOut . _basePlotModules , Cartesian ) ;
43
+ if ( ! hasCartesian ) Lib . pushUnique ( layoutOut . _basePlotModules , Cartesian ) ;
44
44
45
45
var newAxis = false ;
46
46
if ( hasXref && xaList . indexOf ( xref ) === - 1 ) {
You can’t perform that action at this time.
0 commit comments