Skip to content

Commit aeb14c7

Browse files
committed
chore: add FIXMEs
1 parent 56770a6 commit aeb14c7

File tree

1 file changed

+3
-3
lines changed
  • lib/node_modules/@stdlib/plot/vega/builder/lib/marks

1 file changed

+3
-3
lines changed

lib/node_modules/@stdlib/plot/vega/builder/lib/marks/set.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,11 @@ function set( value ) {
5353
}
5454
value = copy( value );
5555
if ( !hasEqualValues( value, this[ prop.private ] ) ) {
56-
this._removeChangeListeners( this[ prop.private ] );
56+
// this._removeChangeListeners( this[ prop.private ] ); // FIXME
5757
debug( 'Current value: %s. New value: %s.', JSON.stringify( this[ prop.private ] ), JSON.stringify( value ) );
5858
this[ prop.private ] = value;
59-
this.emit( 'change', changeEvent( prop.name ) );
60-
this._addChangeListeners( this[ prop.private ] );
59+
// this.emit( 'change', changeEvent( prop.name ) ); // FIXME
60+
// this._addChangeListeners( this[ prop.private ] ); // FIXME
6161
}
6262
}
6363

0 commit comments

Comments
 (0)