fix: lower mass

This commit is contained in:
əlemi 2023-10-03 02:36:55 +02:00
parent fc8f858b0d
commit d549f11ae1

2
dist/index.html vendored
View file

@ -60,7 +60,7 @@
nodes: nodes,
edges: edges,
};
const options = { edges: { dashes: true, arrows: 'to' }, nodes: { mass: 3, color: "#bf616a", shape: "box" }};
const options = { edges: { dashes: true, arrows: 'to' }, nodes: { mass: 2, color: "#bf616a", shape: "box" }};
const network = new vis.Network(container, data, options);
document.getElementById("loader").remove();
}))