Skip to content

Commit

Permalink
replace alert by console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
DivadNojnarg committed Sep 10, 2024
1 parent bc96fef commit d7b9be9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion posts/2024-09-09-zurich-roadcycling-wc-2024/index.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ leaflet(zch_gpx$routes[[1]]) |>
var coord = e.latlng;
var lat = coord.lat;
var lng = coord.lng;
alert('You clicked the map at latitude: ' + lat + ' and longitude: ' + lng);
console.log('You clicked the map at latitude: ' + lat + ' and longitude: ' + lng);
});
}"
)
Expand Down

0 comments on commit d7b9be9

Please sign in to comment.