From c27653a0e2034d41da0a20dba982d2a4510d2991 Mon Sep 17 00:00:00 2001 From: Nils Schneider Date: Sat, 21 Mar 2015 10:40:09 +0100 Subject: [PATCH] history: cleanup --- history.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/history.js b/history.js index 5b7f8ff..48ba062 100644 --- a/history.js +++ b/history.js @@ -154,7 +154,6 @@ function handle_data(config, map) { var markers = mkmap(map, newnodes, lostnodes, onlinenodes, graph) - console.log(markers) addToList(document.getElementById("newnodes"), config.showContact, "firstseen", markers, newnodes) addToList(document.getElementById("lostnodes"), config.showContact, "lastseen", markers, lostnodes) @@ -203,7 +202,7 @@ function mkmap(map, newnodes, lostnodes, onlinenodes, graph) { } var m = L.marker([d.nodeinfo.location.latitude, d.nodeinfo.location.longitude], opt) - + m.bindPopup(d.nodeinfo.hostname) markersDict[d.nodeinfo.node_id] = m