From 0e5fa0229301f801590101331ce97f05c8e7369d Mon Sep 17 00:00:00 2001 From: Edward Betts Date: Tue, 11 May 2021 17:40:38 +0200 Subject: [PATCH] Remove console.log() calls --- static/js/map.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/static/js/map.js b/static/js/map.js index b621188..f32560d 100644 --- a/static/js/map.js +++ b/static/js/map.js @@ -115,12 +115,10 @@ function update_wikidata(check_for_missing = true) { var item = wikidata_items[qid]; if (!item) missing_qids.push(qid); } - console.log(missing_qids); if (missing_qids.length) { var params = { qids: missing_qids.join(",") }; axios.get(missing_url, { params: params }).then((response) => { - console.log(response.data.items); response.data.isa_count.forEach((isa) => { isa_labels[isa.qid] = isa.label; @@ -357,7 +355,6 @@ function load_wikidata_items() { load_text.classList.add("visually-hidden"); var bounds = map.getBounds(); - console.log("map moved", bounds.toBBoxString()); var params = { bounds: bounds.toBBoxString() };