Skip to content

Commit

Permalink
Fix leaflet-extras#72; Add polymerBehavior annotations for hydrolysis
Browse files Browse the repository at this point in the history
  • Loading branch information
naoak committed Apr 1, 2016
1 parent c741de7 commit b0fdb78
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 0 deletions.
2 changes: 2 additions & 0 deletions leaflet-draw.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@

var leafletMap = leafletMap || {};

/** @polymerBehavior leafletMap.LeafletPath */
window.leafletMap.LeafletPath = {
/**
* Fired when the user clicks (or taps) the object.
Expand Down Expand Up @@ -272,6 +273,7 @@
}
};

/** @polymerBehavior leafletMap.LeafletPointContent */
window.leafletMap.LeafletPointContent = {
attached: function() {
if (MutationObserver && !this.observer_) {
Expand Down
3 changes: 3 additions & 0 deletions leaflet-layer.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
"use strict";

var leafletMap = leafletMap || {};

/** @polymerBehavior leafletMap.LeafletILayer */
window.leafletMap.LeafletILayer = {

/**
Expand All @@ -20,6 +22,7 @@
}
};

/** @polymerBehavior leafletMap.LeafletTileLayer */
window.leafletMap.LeafletTileLayer = {
/**
* Fired when the tile layer starts loading tiles.
Expand Down
2 changes: 2 additions & 0 deletions leaflet-popup.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
"use strict";

var leafletMap = leafletMap || {};

/** @polymerBehavior leafletMap.LeafletPopupContent */
leafletMap.LeafletPopupContent = {
attached: function() {
if (MutationObserver && !this.observer_) {
Expand Down

0 comments on commit b0fdb78

Please sign in to comment.