Merge pull request #2684 from ahocevar/notify-change

Rename ol.Observable#dispatchChangeEvent() to #changed()
This commit is contained in:
Andreas Hocevar
2014-09-11 15:51:22 -07:00
32 changed files with 66 additions and 66 deletions
+2 -2
View File
@@ -103,7 +103,7 @@ ol.ImageTile.prototype.getKey = function() {
ol.ImageTile.prototype.handleImageError_ = function() {
this.state = ol.TileState.ERROR;
this.unlistenImage_();
this.dispatchChangeEvent();
this.changed();
};
@@ -126,7 +126,7 @@ ol.ImageTile.prototype.handleImageLoad_ = function() {
this.state = ol.TileState.EMPTY;
}
this.unlistenImage_();
this.dispatchChangeEvent();
this.changed();
};