Merge pull request #3124 from sirtet/master

Add a space between scale -value and -unit
This commit is contained in:
Tobias Sauerwein
2015-01-14 12:41:01 +01:00

View File

@@ -325,7 +325,7 @@ ol.control.ScaleLine.prototype.updateElement_ = function() {
++i;
}
var html = count + suffix;
var html = count + ' ' + suffix;
if (this.renderedHTML_ != html) {
this.innerElement_.innerHTML = html;
this.renderedHTML_ = html;