Lint free examples

This commit is contained in:
Tim Schaub
2016-01-09 16:31:58 -07:00
parent 0555bb081a
commit 8c38d22b60
64 changed files with 429 additions and 489 deletions

View File

@@ -84,14 +84,14 @@ var source = new ol.source.ImageWMS({
serverType: 'geoserver'
});
source.on('imageloadstart', function(event) {
source.on('imageloadstart', function() {
progress.addLoading();
});
source.on('imageloadend', function(event) {
source.on('imageloadend', function() {
progress.addLoaded();
});
source.on('imageloaderror', function(event) {
source.on('imageloaderror', function() {
progress.addLoaded();
});