Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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