You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
364 B
JavaScript
16 lines
364 B
JavaScript
import {pub, sub} from './pubsub.js';
|
|
import state from './state.js';
|
|
import redraw from './redraw.js';
|
|
|
|
// "raw" event listeners, which publish meaningful events, which are listened-to further-down:
|
|
// ...
|
|
|
|
|
|
// "meaningful" event listeners:
|
|
//sub('set-current-node', (node_vm)=>{
|
|
// state.current_node_vm = node_vm;
|
|
// redraw();
|
|
// });
|
|
|
|
|
|
export default null; |