From 38c0eef615c21b93363b917db8745de698aee38c Mon Sep 17 00:00:00 2001 From: Sami Mokaddem Date: Fri, 27 Oct 2017 09:59:12 +0200 Subject: [PATCH] UI typo --- static/js/geo.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/js/geo.js b/static/js/geo.js index c44090c..6301e03 100644 --- a/static/js/geo.js +++ b/static/js/geo.js @@ -126,7 +126,7 @@ function updateTopMaps(dayNum) { } else { // create new marker var marker = L.marker([coordJson.lat, coordJson.lon]).addTo(allOpenStreetMap[i+1]); savedMarker[i+1] = marker; - marker.bindPopup('lat: '+coordJson.lat+', lon: '+coordJson.lon+' ('+list[i][1]+')').openPopup(); + marker.bindPopup('lat: '+coordJson.lat+', lon: '+coordJson.lon+' ('+list[i][1]+')').openPopup(); } } });