Added data attributes for the nodes.

This commit is contained in:
mdtrooper 2016-02-24 10:35:33 +01:00
parent fcc42ce5a3
commit d11448838f
1 changed files with 5 additions and 2 deletions

View File

@ -187,9 +187,12 @@ MapController.prototype.paint_nodes = function() {
.append("g")
.attr("transform",
function(d) { return "translate(" + d['x'] + " " + d['y'] + ")";})
.attr("class", "draggable node")
.attr("id", function(d) { return "node_" + d['id'];})
.attr("data-id", function(d) { return d['id'];})
.attr("data-graph_id", function(d) { return d['graph_id'];})
.attr("data-type", function(d) { return d['type'];})
.append("circle")
.attr("id", function(d) { return "node_" + d['id'];})
.attr("class", "node")
.attr("style", "fill: rgb(50, 50, 128);")
.attr("r", "6");
}