Skip to content

Commit

Permalink
Fixes for issue #82 (pull from 1.0dev branch)
Browse files Browse the repository at this point in the history
  • Loading branch information
Scott Fairgrieve authored and Scott Fairgrieve committed Jan 18, 2016
1 parent c7ef169 commit 1d47d67
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
3 changes: 2 additions & 1 deletion dist/leaflet-dvf.js
Original file line number Diff line number Diff line change
Expand Up @@ -6515,7 +6515,8 @@ L.ChartDataLayer = L.DataLayer.extend({
var marker;

if (latLng) {
marker = this._getMarker(latLng, options);
this._markerFunction = this.options.getMarker || this._getMarker;
marker = this._markerFunction.call(this, latLng, options, record);
marker.boundaryLayer = boundaryLayer;
}

Expand Down
2 changes: 1 addition & 1 deletion dist/leaflet-dvf.markers.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 1d47d67

Please sign in to comment.