Skip to content

Commit

Permalink
remove trailing commas (Leaflet#6279)
Browse files Browse the repository at this point in the history
  • Loading branch information
helbling authored and mourner committed Aug 13, 2018
1 parent 0873b2b commit f12dc43
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/layer/ImageOverlay.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export var ImageOverlay = Layer.extend({

// @option className: String = ''
// A custom class name to assign to the image. Empty by default.
className: '',
className: ''
},

initialize: function (url, bounds, options) { // (String, LatLngBounds, Object)
Expand Down
2 changes: 1 addition & 1 deletion src/layer/marker/Icon.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export var Icon = Class.extend({

options: {
popupAnchor: [0, 0],
tooltipAnchor: [0, 0],
tooltipAnchor: [0, 0]
},

initialize: function (options) {
Expand Down

0 comments on commit f12dc43

Please sign in to comment.