Clean up whitespace

This commit is contained in:
Tom Payne
2012-07-28 15:40:46 +02:00
parent 0ae4555f30
commit 83077d2754
-4
View File
@@ -683,17 +683,13 @@ ol.Map.prototype.render = function() {
* @return {boolean} Animating. * @return {boolean} Animating.
*/ */
ol.Map.prototype.renderInternal = function() { ol.Map.prototype.renderInternal = function() {
this.dirty_ = false; this.dirty_ = false;
var animate = false; var animate = false;
this.forEachReadyVisibleLayer(function(layer, layerRenderer) { this.forEachReadyVisibleLayer(function(layer, layerRenderer) {
if (layerRenderer.render()) { if (layerRenderer.render()) {
animate = true; animate = true;
} }
}); });
return animate; return animate;
}; };