fixes
This commit is contained in:
parent
290bc6f359
commit
aae9d4253e
@ -115,7 +115,7 @@ define(["d3"], function (d3) {
|
|||||||
|
|
||||||
return
|
return
|
||||||
} else if (highlight.type === "link") {
|
} else if (highlight.type === "link") {
|
||||||
var l = linksDict[linkId(highlight.o)]
|
var l = linksDict[highlight.o.id]
|
||||||
|
|
||||||
if (l) {
|
if (l) {
|
||||||
node.classed("highlight", false)
|
node.classed("highlight", false)
|
||||||
@ -223,7 +223,7 @@ define(["d3"], function (d3) {
|
|||||||
|
|
||||||
link = vis.select("g.links")
|
link = vis.select("g.links")
|
||||||
.selectAll("g.link")
|
.selectAll("g.link")
|
||||||
.data(links, function (d) { return d.id })
|
.data(intLinks, function (d) { return d.o.id })
|
||||||
|
|
||||||
link.exit().remove()
|
link.exit().remove()
|
||||||
|
|
||||||
|
@ -118,7 +118,7 @@ define(["d3", "leaflet", "moment", "leaflet.label"], function (d3, L, moment) {
|
|||||||
if (m)
|
if (m)
|
||||||
m.setStyle({ fillColor: m.options.color, color: "orange", weight: 20, fillOpacity: 1, opacity: 0.7 })
|
m.setStyle({ fillColor: m.options.color, color: "orange", weight: 20, fillOpacity: 1, opacity: 0.7 })
|
||||||
} else if (highlight.type === "link") {
|
} else if (highlight.type === "link") {
|
||||||
m = linkDict[linkId(highlight.o)]
|
m = linkDict[highlight.o.id]
|
||||||
|
|
||||||
if (m)
|
if (m)
|
||||||
m.setStyle({ weight: 7, opacity: 1, dashArray: "10, 10" })
|
m.setStyle({ weight: 7, opacity: 1, dashArray: "10, 10" })
|
||||||
|
Loading…
Reference in New Issue
Block a user