Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@ var signalName = require( './../../utils/signal_name.js' );
// VARIABLES //

var PROPS = [
'background',
'description'
'background'
];


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
var REFRESH_PROPS = [
'width',
'height',
'description',
'labelAlign',
'labelBaseline',
'labelBound',
Expand Down Expand Up @@ -97,7 +98,7 @@
var data;
if ( event ) {
if ( event.source === 'data' ) {
// TODO: handle data change event

Check warning on line 101 in lib/node_modules/@stdlib/plot/base/view/lib/browser/routes/events/main.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unexpected 'todo' comment: 'TODO: handle data change event'

// NOTE: for data changes, will also need to propagate plot changes (e.g., scales ranges might need updating, etc). Could first send property changes and, once sent, send over data changes.
return;
Expand All @@ -110,7 +111,7 @@
}
counter += 1;

// FIXME: only send the JSON patch

Check warning on line 114 in lib/node_modules/@stdlib/plot/base/view/lib/browser/routes/events/main.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unexpected 'fixme' comment: 'FIXME: only send the JSON patch'
data = self.spec.toString();

self.events.push({
Expand Down
Loading