From 670635163d684450d9fb747a9a3148ae7112cff0 Mon Sep 17 00:00:00 2001 From: Nils Schneider Date: Sat, 21 Mar 2015 13:32:07 +0100 Subject: [PATCH] history: show TQ in popup --- history.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/history.js b/history.js index 940eb66..457496d 100644 --- a/history.js +++ b/history.js @@ -267,7 +267,7 @@ function addLinksToMap(map, graph) { var line = L.polyline(d.latlngs, opts) - line.bindPopup(d.source.node.nodeinfo.hostname + " – " + d.target.node.nodeinfo.hostname + "
" + showDistance(d) + "") + line.bindPopup(d.source.node.nodeinfo.hostname + " – " + d.target.node.nodeinfo.hostname + "
" + showDistance(d) + " / " + showTq(d) + "") markersDict[linkId(d)] = line