From 6e62b350ce813892b5630fde8e784b434613fd52 Mon Sep 17 00:00:00 2001 From: alexcjohnson Date: Fri, 29 Dec 2017 23:15:21 -0500 Subject: [PATCH] get rid of unneeded _has(gl2d) --- src/plots/plots.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plots/plots.js b/src/plots/plots.js index 65a7b5abe34..e7a31c22aa2 100644 --- a/src/plots/plots.js +++ b/src/plots/plots.js @@ -1371,7 +1371,7 @@ plots.supplyLayoutModuleDefaults = function(layoutIn, layoutOut, fullData, trans } // ensure all cartesian axes have at least one subplot - if(layoutOut._has('cartesian') || layoutOut._has('gl2d')) { + if(layoutOut._has('cartesian')) { Cartesian.finalizeSubplots(layoutIn, layoutOut); }