diff --git a/examples/quick-start-example.html b/examples/quick-start-example.html index 85ccdd70..5a9bb56f 100644 --- a/examples/quick-start-example.html +++ b/examples/quick-start-example.html @@ -14,51 +14,42 @@ diff --git a/examples/quick-start.md b/examples/quick-start.md index 23f0d3a2..be99b377 100644 --- a/examples/quick-start.md +++ b/examples/quick-start.md @@ -129,8 +129,8 @@ Lets improve our example by using a popup instead of an alert: function onMapClick(e) { popup - .setLatLng(e.latlng); - .setContent("You clicked the map at " + e.latlng.toString()); + .setLatLng(e.latlng) + .setContent("You clicked the map at " + e.latlng.toString()) .openOn(map); } @@ -141,87 +141,84 @@ Try clicking on the map and you will see the coordinates in a popup. documentation or other examples. - - - - - -