File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -2796,6 +2796,7 @@ function makePlotFramework(gd) {
27962796 // right, rather than enter/exit which can muck up the order
27972797 // TODO: sort out all the ordering so we don't have to
27982798 // explicitly delete anything
2799+ // FIXME: parcoords reuses this object, not the best pattern
27992800 fullLayout . _glcontainer = fullLayout . _paperdiv . selectAll ( '.gl-container' )
28002801 . data ( [ { } ] ) ;
28012802 fullLayout . _glcontainer . enter ( ) . append ( 'div' )
Original file line number Diff line number Diff line change @@ -1332,7 +1332,7 @@ plots.purge = function(gd) {
13321332
13331333 var fullLayout = gd . _fullLayout || { } ;
13341334 if ( fullLayout . _glcontainer !== undefined ) {
1335- fullLayout . _glcontainer . selectAll ( '.gl-canvas' ) . data ( [ ] ) . exit ( ) . remove ( ) ;
1335+ fullLayout . _glcontainer . selectAll ( '.gl-canvas' ) . remove ( ) ;
13361336 fullLayout . _glcontainer . remove ( ) ;
13371337 fullLayout . _glcanvas = null ;
13381338 }
You can’t perform that action at this time.
0 commit comments