From a13b94c4514c524c5560b887a2ae15aa4c1f1b85 Mon Sep 17 00:00:00 2001 From: archmoj Date: Thu, 14 Jan 2021 20:26:14 -0500 Subject: [PATCH] cleanup _has plot types possibly used to be applied in streambed --- src/plots/plots.js | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/plots/plots.js b/src/plots/plots.js index 09d241a0d13..6fdf074e5e4 100644 --- a/src/plots/plots.js +++ b/src/plots/plots.js @@ -461,15 +461,6 @@ plots.supplyDefaults = function(gd, opts) { newFullLayout.images.length === 0 ); - // TODO remove in v2.0.0 - // add has-plot-type refs to fullLayout for backward compatibility - newFullLayout._hasCartesian = newFullLayout._has('cartesian'); - newFullLayout._hasGeo = newFullLayout._has('geo'); - newFullLayout._hasGL3D = newFullLayout._has('gl3d'); - newFullLayout._hasGL2D = newFullLayout._has('gl2d'); - newFullLayout._hasTernary = newFullLayout._has('ternary'); - newFullLayout._hasPie = newFullLayout._has('pie'); - // relink / initialize subplot axis objects plots.linkSubplots(newFullData, newFullLayout, oldFullData, oldFullLayout);