don't group the cluster directly after the start

This commit is contained in:
Andreas Zweili 2018-09-02 16:08:35 +02:00
parent e477b25be1
commit 22f6d0ba72
1 changed files with 1 additions and 25 deletions

View File

@ -33,10 +33,7 @@
Please be patient and don't refresh the page.</p> Please be patient and don't refresh the page.</p>
</div> </div>
<div id="buttons"> <div id="buttons">
<input id="buttonCluster" type="button" value="Open/Close Clusters" onclick="clusterByHubsize()"/> <input id="buttonCluster" type="button" value="Close Clusters" onclick="clusterByHubsize()"/>
</div>
<div id="stabilisationBox">
Stabilize when clustering:<input type="checkbox" id="stabilizeCheckbox">
</div> </div>
<div id="mynetwork"></div> <div id="mynetwork"></div>
@ -83,29 +80,8 @@ Please be patient and don't refresh the page.</p>
}; };
network.clusterByHubsize(undefined, clusterOptionsByData); network.clusterByHubsize(undefined, clusterOptionsByData);
} }
else {
openClusters();
}
};
clusterByHubsize();
function openClusters() {
var newClusters = [];
for (var i = 0; i < clusters.length; i++) {
try {
network.openCluster(clusters[i].id);
}
catch {
continue;
}
}
if (document.getElementById('stabilizeCheckbox').checked === true) {
network.stabilize();
}
clusterIndex = 0; clusterIndex = 0;
clusters = newClusters;
}; };
</script> </script>
</body> </body>
</html> </html>