This commit is contained in:
Nils Schneider 2015-04-06 23:14:24 +02:00
commit aae9d4253e
2 changed files with 3 additions and 3 deletions

View file

@ -115,7 +115,7 @@ define(["d3"], function (d3) {
return
} else if (highlight.type === "link") {
var l = linksDict[linkId(highlight.o)]
var l = linksDict[highlight.o.id]
if (l) {
node.classed("highlight", false)
@ -223,7 +223,7 @@ define(["d3"], function (d3) {
link = vis.select("g.links")
.selectAll("g.link")
.data(links, function (d) { return d.id })
.data(intLinks, function (d) { return d.o.id })
link.exit().remove()