diff --git a/Output/cn.js b/Output/cn.js index 539084cd7e6036177f0c25d3ade19c9b9875c536..b9a5da2166ce8d782276b1489e5a4def88e5c5f0 100644 --- a/Output/cn.js +++ b/Output/cn.js @@ -158,10 +158,11 @@ function updateNodes(nodes) { .attr('dx', function(d) {return xscale(parseFloat(d.year))}) .attr("initial_x", function(d) {return d.dx;}) .attr("initial_y", function(d) {return d.dy;}) - /*.call(d3.drag() + .call(d3.drag() .on("start", dragstarted) .on("drag", dragged) - )*/; + .on("end", dragended) + ); node.append("circle") .attr("class", "circle") @@ -303,6 +304,16 @@ function dragged(node) { node.fy = d3.event.y; } +/** +* ends the dragging and resets the position of the node +* @param {object} node - data of current node +*/ +function dragended(node) { + if (!d3.event.active) simulation.alphaTarget(.03); + node.fx = null; + node.fy = null; +} + /** * resets the positions of the nodes */