Skip to content

Commit

Permalink
Version 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bbecquet committed Jul 16, 2016
1 parent 6a62287 commit f2d269c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "leaflet-polylinedecorator",
"main": "leaflet.polylineDecorator.js",
"version": "1.0.1",
"version": "1.1.0",
"authors": [
"Benjamin Becquet"
],
Expand Down
4 changes: 2 additions & 2 deletions leaflet.polylineDecorator.js
Original file line number Diff line number Diff line change
Expand Up @@ -167,13 +167,13 @@ L.LineUtil.PolylineDecorator = {
}
};

L.PolylineDecorator = L.LayerGroup.extend({
L.PolylineDecorator = L.FeatureGroup.extend({
options: {
patterns: []
},

initialize: function(paths, options) {
L.LayerGroup.prototype.initialize.call(this);
L.FeatureGroup.prototype.initialize.call(this);
L.Util.setOptions(this, options);
this._map = null;
this._initPaths(paths);
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "leaflet-polylinedecorator",
"version": "1.0.1",
"version": "1.1.0",
"repository": "bbecquet/Leaflet.PolylineDecorator",
"main": "leaflet.polylineDecorator.js",
"devDependencies": {
Expand Down

0 comments on commit f2d269c

Please sign in to comment.