diff --git a/src/ol/tile.js b/src/ol/tile.js index a4cde0f0e1..c390db3bd5 100644 --- a/src/ol/tile.js +++ b/src/ol/tile.js @@ -96,7 +96,7 @@ ol.Tile.prototype.getImage = function(opt_context) { } else if (goog.object.isEmpty(this.imageByContext_)) { image = this.image_; } else { - image = /** @type {Image} */ this.image_.cloneNode(false); + image = /** @type {Image} */ (this.image_.cloneNode(false)); } this.imageByContext_[key] = image; return image;