Merge pull request #10 from plumpudding/master
show router hardware in link info
This commit is contained in:
commit
47c7fcbfb5
|
@ -20,6 +20,9 @@ define(function () {
|
||||||
attributeEntry(attributes, "TQ", showTq(d))
|
attributeEntry(attributes, "TQ", showTq(d))
|
||||||
attributeEntry(attributes, "Entfernung", showDistance(d))
|
attributeEntry(attributes, "Entfernung", showDistance(d))
|
||||||
attributeEntry(attributes, "VPN", d.vpn ? "ja" : "nein")
|
attributeEntry(attributes, "VPN", d.vpn ? "ja" : "nein")
|
||||||
|
var hw1 = dictGet(d.source.node.nodeinfo, ["hardware", "model"])
|
||||||
|
var hw2 = dictGet(d.target.node.nodeinfo, ["hardware", "model"])
|
||||||
|
attributeEntry(attributes, "Hardware", (hw1 != null ? hw1 : "unbekannt") + " – " + (hw2 != null ? hw2 : "unbekannt"))
|
||||||
|
|
||||||
el.appendChild(attributes)
|
el.appendChild(attributes)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue