Change LinkForceTweaked name

This commit is contained in:
Pitchaya Boonsarngsuk
2018-01-31 08:40:01 +00:00
parent 3dbc8b1751
commit 4bab39a24d
2 changed files with 2 additions and 2 deletions

View File

@@ -11,7 +11,7 @@ function startLinkSimulation() {
let links = [], force;
if (tweakedVerOfLink) {
force = d3.forceLinkTweaked()
force = d3.forceLinkFullyConnected()
.distance(function (n) {
return distanceFunction(n.source, n.target, props, norm);
});