From 7af8c672605e8fd0dadddbc882cca6e0fe2eeb5e Mon Sep 17 00:00:00 2001 From: Nils Schneider Date: Sun, 22 Mar 2015 16:00:34 +0100 Subject: [PATCH] show number of neighbours --- history.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/history.js b/history.js index 0083666..315450b 100644 --- a/history.js +++ b/history.js @@ -458,7 +458,7 @@ function showNodeinfo(config, gotoAnything, d) { if (d.neighbours.length > 0) { var h3 = document.createElement("h3") - h3.textContent = "Nachbarknoten" + h3.textContent = "Nachbarknoten (" + d.neighbours.length + ")" el.appendChild(h3) var table = document.createElement("table")