Files
architype/render.js

8 lines
162 B
JavaScript
Raw Normal View History

2019-07-03 03:24:15 +00:00
function onmessage(def) {
let graph = new Graph(def);
let layout = new Layout(graph);
2019-07-03 03:24:15 +00:00
}
<!--# include file="Graph.js" -->
<!--# include file="Layout.js" -->