From d705573cb961a7810feadc6f69f3153a344d158d Mon Sep 17 00:00:00 2001 From: phl0 Date: Mon, 29 Apr 2024 21:08:51 +0200 Subject: [PATCH] Removed debug code --- assets/js/sections/jccmap.js | 6 ------ 1 file changed, 6 deletions(-) diff --git a/assets/js/sections/jccmap.js b/assets/js/sections/jccmap.js index d3ccefcb8..39bdfdb31 100644 --- a/assets/js/sections/jccmap.js +++ b/assets/js/sections/jccmap.js @@ -70,18 +70,13 @@ function load_jcc_map2(data, worked, confirmed, notworked) { for (const [key, value] of Object.entries(jccstuff)) { var D = []; if (key in data) { - console.log("found"); if (confirmed.checked == true) { - console.log("TEST: "+key); - console.log("TEST: "+data[key][1]); - console.log("TEST: "+value[0]); if (data[key][1] == 1) { mapColor = 'green'; D['prefix'] = key; D['name'] = value[0]; D['lat'] = value[1]; D['long'] = value[2]; - console.log("T: "+D); addMarker(L, D, mapColor, map); confirmedcount++; continue; @@ -97,7 +92,6 @@ function load_jcc_map2(data, worked, confirmed, notworked) { workednotconfirmedcount++; } } else { - console.log("notfound"); if (notworked.checked == true) { mapColor = 'red'; D['prefix'] = key;