We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56770a6 commit aeb14c7Copy full SHA for aeb14c7
1 file changed
lib/node_modules/@stdlib/plot/vega/builder/lib/marks/set.js
@@ -53,11 +53,11 @@ function set( value ) {
53
}
54
value = copy( value );
55
if ( !hasEqualValues( value, this[ prop.private ] ) ) {
56
- this._removeChangeListeners( this[ prop.private ] );
+ // this._removeChangeListeners( this[ prop.private ] ); // FIXME
57
debug( 'Current value: %s. New value: %s.', JSON.stringify( this[ prop.private ] ), JSON.stringify( value ) );
58
this[ prop.private ] = value;
59
- this.emit( 'change', changeEvent( prop.name ) );
60
- this._addChangeListeners( this[ prop.private ] );
+ // this.emit( 'change', changeEvent( prop.name ) ); // FIXME
+ // this._addChangeListeners( this[ prop.private ] ); // FIXME
61
62
63
0 commit comments