mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-03 14:54:37 +00:00
12 lines
293 B
JavaScript
Executable File
12 lines
293 B
JavaScript
Executable File
|
|
LiteGraph.node_images_path = "../nodes_data/";
|
|
var editor = new LiteGraph.Editor("main");
|
|
window.graph = editor.graph;
|
|
window.addEventListener("resize", function() { editor.graphcanvas.resize(); } );
|
|
demo();
|
|
|
|
function trace(a)
|
|
{
|
|
if(typeof(console) == "object")
|
|
console.log(a);
|
|
} |