add missing semicolon.

git-svn-id: http://svn.openlayers.org/trunk/openlayers@10468 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
Frédéric Junod
2010-07-08 10:15:37 +00:00
parent 8c2caf91d1
commit 1c4afaaded

View File

@@ -83,7 +83,7 @@ OpenLayers.Strategy.Save = OpenLayers.Class(OpenLayers.Strategy, {
this.timer = window.setInterval(
OpenLayers.Function.bind(this.save, this),
this.auto * 1000
)
);
} else {
this.layer.events.on({
"featureadded": this.triggerSave,
@@ -115,7 +115,7 @@ OpenLayers.Strategy.Save = OpenLayers.Class(OpenLayers.Strategy, {
"featureadded": this.triggerSave,
"afterfeaturemodified": this.triggerSave,
scope: this
})
});
}
}
}