Skip to content

Commit

Permalink
bump version to 0.5.1 and update build
Browse files Browse the repository at this point in the history
  • Loading branch information
mourner committed Feb 6, 2013
1 parent 241cc7d commit c1d410f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions dist/leaflet-src.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ if (typeof exports !== undefined + '') {
window.L = L;
}

L.version = '0.5';
L.version = '0.5.1';


/*
Expand Down Expand Up @@ -5317,7 +5317,7 @@ L.CircleMarker = L.Circle.extend({
},

setRadius: function (radius) {
this._radius = radius;
this.options.radius = this._radius = radius;
return this.redraw();
}
});
Expand Down Expand Up @@ -5441,7 +5441,7 @@ L.GeoJSON = L.FeatureGroup.extend({
if (features) {
for (i = 0, len = features.length; i < len; i++) {
// Only add this if geometry or geometries are set and not null
if (features[i].geometries || features[i].geometry) {
if (features[i].geometries || features[i].geometry || features[i].features) {
this.addData(features[i]);
}
}
Expand Down
Loading

0 comments on commit c1d410f

Please sign in to comment.