Skip to content

Commit

Permalink
Children -> childNodes swap
Browse files Browse the repository at this point in the history
  • Loading branch information
Scott Fairgrieve authored and Scott Fairgrieve committed Jan 1, 2016
1 parent c5db029 commit fd08b07
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion dist/leaflet-dvf.js
Original file line number Diff line number Diff line change
Expand Up @@ -2749,7 +2749,7 @@ var PathFunctions = PathFunctions || {
gradient.setAttribute(key, gradientOptions[key]);
}

var children = gradient.children;
var children = gradient.childNodes;
var childLength = children.length;

for (var i = 0, len = stops.length; i < len; ++i) {
Expand Down
4 changes: 2 additions & 2 deletions dist/leaflet-dvf.markers.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ L.LinearFunction = L.Class.extend({
this._maxPoint = maxPoint;
this._xRange = maxPoint.x - minPoint.x;
this._yRange = maxPoint.y - minPoint.y;

this._calculateParameters(minPoint, maxPoint);

return this;
Expand Down Expand Up @@ -2644,7 +2644,7 @@ var PathFunctions = PathFunctions || {
gradient.setAttribute(key, gradientOptions[key]);
}

var children = gradient.children;
var children = gradient.childNodes;
var childLength = children.length;

for (var i = 0, len = stops.length; i < len; ++i) {
Expand Down
Loading

0 comments on commit fd08b07

Please sign in to comment.