Unnecessary and missing semicolon.

This commit is contained in:
Frederic Junod
2012-03-16 12:04:11 +01:00
parent 2b41c8926b
commit 2de2fe2563
13 changed files with 14 additions and 14 deletions

View File

@@ -37,7 +37,7 @@ var map = new OpenLayers.Map({
function loadFeatures(data) {
var features = new OpenLayers.Format.GeoJSON().read(data);
states.addFeatures(features);
};
}
// update filter and redraw when form is submitted
var cql = document.getElementById("cql");

View File

@@ -20,7 +20,7 @@ function startAnimation() {
filter.lowerBoundary = currentDate;
filter.upperBoundary = new Date(currentDate.getTime() + (span * 1000));
filterStrategy.setFilter(filter);
currentDate = new Date(currentDate.getTime() + (step * 1000))
currentDate = new Date(currentDate.getTime() + (step * 1000));
} else {
stopAnimation(true);
}