From 1388544ba1014b8a43f5b30cbacbb01d7c4cd6c5 Mon Sep 17 00:00:00 2001 From: Katie Filbert Date: Sat, 1 Dec 2012 15:04:40 +0100 Subject: fix syntax error --- resources/map.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'resources/map.js') 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(); } -- cgit v1.2.3