[Pkg-javascript-commits] [leaflet-markercluster] 40/128: Added a couple of missing semi-colons to improve readability/best practice.

Jonas Smedegaard dr at jones.dk
Sun Apr 16 06:26:02 UTC 2017


This is an automated email from the git hooks/post-receive script.

js pushed a commit to branch master
in repository leaflet-markercluster.

commit 9d773160056ae76537df95bd0c16cf5679ab25ad
Author: isedwards <ian at myacorn.com>
Date:   Fri Jan 15 11:37:37 2016 +0000

    Added a couple of missing semi-colons to improve readability/best practice.
---
 example/marker-clustering-geojson.html | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/example/marker-clustering-geojson.html b/example/marker-clustering-geojson.html
index d00450a..fe41439 100644
--- a/example/marker-clustering-geojson.html
+++ b/example/marker-clustering-geojson.html
@@ -39,14 +39,14 @@
 				var popupText = 'geometry type: ' + feature.geometry.type;
 
 				if (feature.properties.color) {
-					popupText += '<br/>color: ' + feature.properties.color
+					popupText += '<br/>color: ' + feature.properties.color;
 				}
 
 				layer.bindPopup(popupText);
 			}
 		});
 
-		geojson.addLayer(new L.Marker(new L.LatLng(2.745530718801952, 105.194091796875)))
+		geojson.addLayer(new L.Marker(new L.LatLng(2.745530718801952, 105.194091796875)));
 
 		var eye1 = new L.Marker(new L.LatLng(-0.7250783020332547, 101.8212890625));
 		var eye2 = new L.Marker(new L.LatLng(-0.7360637370492077, 103.2275390625));

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/leaflet-markercluster.git



More information about the Pkg-javascript-commits mailing list