Missing semicolon.

git-svn-id: http://svn.openlayers.org/trunk/openlayers@9944 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
Frédéric Junod
2010-01-12 10:20:41 +00:00
parent eda2a80187
commit 311f47da78

View File

@@ -70,7 +70,7 @@
out_options
);
var kmlOptionsIn = OpenLayers.Util.extend(
{extractStyles: true}, in_options)
{extractStyles: true}, in_options);
formats = {
'in': {
wkt: new OpenLayers.Format.WKT(in_options),
@@ -146,7 +146,7 @@
vectors.addFeatures(features);
map.zoomToExtent(bounds);
var plural = (features.length > 1) ? 's' : '';
element.value = features.length + ' feature' + plural + ' added'
element.value = features.length + ' feature' + plural + ' added';
} else {
element.value = 'Bad input ' + type;
}