File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Filter options
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Original file line number Diff line number Diff line change @@ -480,7 +480,7 @@ plots.supplyDataDefaults = function(traceIn, i, layout) {
480
480
traceOut . index = i ;
481
481
var visible = coerce ( 'visible' ) ,
482
482
scene ,
483
- module ;
483
+ _module ;
484
484
485
485
coerce ( 'type' ) ;
486
486
coerce ( 'uid' ) ;
@@ -494,14 +494,14 @@ plots.supplyDataDefaults = function(traceIn, i, layout) {
494
494
// module-specific attributes --- note: we need to send a trace into
495
495
// the 3D modules to have it removed from the webgl context.
496
496
if ( visible || scene ) {
497
- module = plots . getModule ( traceOut ) ;
498
- traceOut . _module = module ;
497
+ _module = Registry . getModule ( traceOut ) ;
498
+ traceOut . _module = _module ;
499
499
}
500
500
501
501
// gets overwritten in pie and geo
502
502
if ( visible ) coerce ( 'hoverinfo' , ( layout . _dataLength === 1 ) ? 'x+y+z+text' : undefined ) ;
503
503
504
- if ( module && visible ) module . supplyDefaults ( traceIn , traceOut , defaultColor , layout ) ;
504
+ if ( _module && visible ) _module . supplyDefaults ( traceIn , traceOut , defaultColor , layout ) ;
505
505
506
506
if ( visible ) {
507
507
coerce ( 'name' , 'trace ' + i ) ;
You can’t perform that action at this time.
0 commit comments