Skip to content

Commit

Permalink
add space before className (#5830)
Browse files Browse the repository at this point in the history
  • Loading branch information
cherniavskii authored and perliedman committed Oct 10, 2017
1 parent 93be1ae commit bb1d94a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/layer/ImageOverlay.js
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ export var ImageOverlay = Layer.extend({

_initImage: function () {
var img = this._image = DomUtil.create('img',
'leaflet-image-layer ' + (this._zoomAnimated ? 'leaflet-zoom-animated' : '') +
'leaflet-image-layer ' + (this._zoomAnimated ? 'leaflet-zoom-animated ' : '') +
(this.options.className || ''));

img.onselectstart = Util.falseFn;
Expand Down

0 comments on commit bb1d94a

Please sign in to comment.