[ol.Tile] add comments for handleImageLoad and handleImageError

This commit is contained in:
Éric Lemoine
2012-06-21 15:12:02 +02:00
parent e72ab5135c
commit 79b0bb74c8

View File

@@ -66,15 +66,17 @@ ol.Tile.prototype.getImg = function() {
};
/**
*
* Handle load event on the image.
* @param {goog.events.BrowserEvent} evt Event.
*/
ol.Tile.prototype.handleImageLoad = function() {
ol.Tile.prototype.handleImageLoad = function(evt) {
};
/**
*
* Handle load error event on the image.
* @param {goog.events.BrowserEvent} evt Event.
*/
ol.Tile.prototype.handleImageError = function() {
ol.Tile.prototype.handleImageError = function(evt) {
};
/**