diff options
Diffstat (limited to 'static/v0/js/geolocation.js')
-rw-r--r-- | static/v0/js/geolocation.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/static/v0/js/geolocation.js b/static/v0/js/geolocation.js index 7efffe0..1e93c88 100644 --- a/static/v0/js/geolocation.js +++ b/static/v0/js/geolocation.js @@ -2,8 +2,8 @@ document.addEventListener("DOMContentLoaded", function() { const geoLocationButton = document.getElementById('geolocationsearch'); const processResult = function(results) { - console.log(results); const list = document.createElement("ul"); + list.class = "stops"; for (var result in results) { result = results[result]; var listentry = document.createElement("li"); |