From fc499a7b98a57a452b33b1d1310482840bef8551 Mon Sep 17 00:00:00 2001
From: Daniel Friesel <derf@finalrewind.org>
Date: Sun, 27 Jun 2021 09:50:23 +0200
Subject: switch to scss

---
 static/v0/js/geolocation.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'static/v0/js')

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");
-- 
cgit v1.2.3