From 2d7d002c854a99c6b7261769b9eab9560f9a1e24 Mon Sep 17 00:00:00 2001 From: Andreas Hocevar Date: Fri, 2 Oct 2015 11:05:19 +0200 Subject: [PATCH] Fix coding style --- src/ol/style/iconstyle.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/ol/style/iconstyle.js b/src/ol/style/iconstyle.js index 2f3675c27f..b8ee9a5eb1 100644 --- a/src/ol/style/iconstyle.js +++ b/src/ol/style/iconstyle.js @@ -426,7 +426,10 @@ ol.style.IconImage_ = function(image, src, size, crossOrigin, imageState) { * @type {boolean} */ this.tainting_ = false; - if (this.imageState_ == ol.style.ImageState.LOADED)this.determineTainting_(); + if (this.imageState_ == ol.style.ImageState.LOADED) { + this.determineTainting_(); + } + }; goog.inherits(ol.style.IconImage_, goog.events.EventTarget);