From c10ba432d4fb85c683500712fa554391c326a92f Mon Sep 17 00:00:00 2001 From: Steve Sutton Date: Fri, 26 Oct 2018 13:30:30 -0400 Subject: [PATCH] Comment out console log Remove call to console log (commented really) --- views/admin/events/edit.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/views/admin/events/edit.html b/views/admin/events/edit.html index 5ea9f18..4e1b3e6 100755 --- a/views/admin/events/edit.html +++ b/views/admin/events/edit.html @@ -1296,7 +1296,7 @@ if( !data[0] || !data[0].lat || !data[0].lon ) { alert(addressMapFail); } else { - console.log(data[0]); + // console.log(data[0]); assignNewPosition(data); alert('We were unable to match all of your address data but did find this location.\n\n' + data[0].display_name + '\n\nPlease check that it is correct and adjust as needed by dragging the map pointer.\nYou may also want to check the city selected in the address.'); } @@ -1304,7 +1304,7 @@ } else { assignNewPosition(data); } - + }); }); -- 2.17.1