8 lines
162 B
JavaScript
8 lines
162 B
JavaScript
function onmessage(def) {
|
|
let graph = new Graph(def);
|
|
let layout = new Layout(graph);
|
|
}
|
|
|
|
<!--# include file="Graph.js" -->
|
|
<!--# include file="Layout.js" -->
|