Skip to content

Commit

Permalink
remove console log
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolocarpignoli committed Jun 24, 2020
1 parent 05fa0f4 commit dc51c0e
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion components/map/map-pick-location.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ function check_lat_lon(e) {
let lat = document.getElementById(`latitude${e.target.name}`).value;
let lng = document.getElementById(`longitude${e.target.name}`).value;

console.log(typeof lat)
let validLat = !isNaN(lat) && lat >= -90 && lat <= 90;
let validLng = !isNaN(lng) && lng >= -180 && lng <= 180;

Expand Down

0 comments on commit dc51c0e

Please sign in to comment.