Again some whitespace removing. (Travis)

This commit is contained in:
Daniel 2013-08-08 17:29:09 +02:00
parent 4f2f1edb04
commit 9630876ce3

View File

@ -18,10 +18,10 @@ L.Control.Zoom = L.Control.extend({
this._map = map;
this._zoomInButton = this._createButton(
this.options.zoomInText, this.options.zoomInTooltip,
this.options.zoomInText, this.options.zoomInTooltip,
zoomName + '-in', container, this._zoomIn, this);
this._zoomOutButton = this._createButton(
this.options.zoomOutText, this.options.zoomOutTooltip,
this.options.zoomOutText, this.options.zoomOutTooltip,
zoomName + '-out', container, this._zoomOut, this);
map.on('zoomend zoomlevelschange', this._updateDisabled, this);