aboutsummaryrefslogtreecommitdiff
path: root/resources/map.js
diff options
context:
space:
mode:
authorKatie Filbert <filbertk@gmail.com>2012-12-01 15:04:40 +0100
committerKatie Filbert <filbertk@gmail.com>2012-12-01 15:04:40 +0100
commit1388544ba1014b8a43f5b30cbacbb01d7c4cd6c5 (patch)
tree4fa650f8ec87fd99bda375bfaf0e4bf4512c1f4d /resources/map.js
parent56b5f65912b43b620753488ba41d04114e54d51a (diff)
downloadhealth-map-1388544ba1014b8a43f5b30cbacbb01d7c4cd6c5.tar
health-map-1388544ba1014b8a43f5b30cbacbb01d7c4cd6c5.tar.gz
fix syntax error
Diffstat (limited to 'resources/map.js')
-rw-r--r--resources/map.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/map.js b/resources/map.js
index 84d7cc7..47cac86 100644
--- a/resources/map.js
+++ b/resources/map.js
@@ -9,7 +9,7 @@ $(document).ready(function() {
function onLocationFound(e) {
var radius = e.accuracy / 2;
- L.marker(e.latlng).addTo(map);
+ L.marker(e.latlng).addTo(map)
.bindPopup("You are within " + radius + " meters from this point").openPopup();
}