@@ -1564,7 +1564,7 @@ function _restyle(gd, aobj, _traces) {
1564
1564
helpers . swapXYData ( cont ) ;
1565
1565
}
1566
1566
else if ( Plots . dataArrayContainers . indexOf ( param . parts [ 0 ] ) !== - 1 ) {
1567
- // TODO: use manageArrays.editContainerArray here too
1567
+ // TODO: use manageArrays.applyContainerArrayChanges here too
1568
1568
helpers . manageArrayContainers ( param , newVal , undoit ) ;
1569
1569
flags . docalc = true ;
1570
1570
}
@@ -2017,7 +2017,7 @@ function _relayout(gd, aobj) {
2017
2017
flags . docalc = true ;
2018
2018
}
2019
2019
2020
- // prepare the edits object we'll send to editContainerArray
2020
+ // prepare the edits object we'll send to applyContainerArrayChanges
2021
2021
if ( ! arrayEdits [ arrayStr ] ) arrayEdits [ arrayStr ] = { } ;
2022
2022
var objEdits = arrayEdits [ arrayStr ] [ i ] ;
2023
2023
if ( ! objEdits ) objEdits = arrayEdits [ arrayStr ] [ i ] = { } ;
@@ -2097,7 +2097,7 @@ function _relayout(gd, aobj) {
2097
2097
2098
2098
// now we've collected component edits - execute them all together
2099
2099
for ( arrayStr in arrayEdits ) {
2100
- var finished = manageArrays . editContainerArray ( gd ,
2100
+ var finished = manageArrays . applyContainerArrayChanges ( gd ,
2101
2101
Lib . nestedProperty ( layout , arrayStr ) , arrayEdits [ arrayStr ] , flags ) ;
2102
2102
if ( ! finished ) flags . doplot = true ;
2103
2103
}
0 commit comments