markerwithlabel
Advanced tools
Comparing version 1.1.11 to 1.1.12
10
index.js
@@ -349,3 +349,11 @@ /** | ||
} else { | ||
this.labelDiv_.innerHTML = ""; // Remove current content | ||
// Remove current content | ||
while (this.labelDiv_.lastChild) { | ||
this.labelDiv_.removeChild(this.labelDiv_.lastChild); | ||
} | ||
while (this.eventDiv_.lastChild) { | ||
this.eventDiv_.removeChild(this.eventDiv_.lastChild); | ||
} | ||
this.labelDiv_.appendChild(content); | ||
@@ -352,0 +360,0 @@ content = content.cloneNode(true); |
{ | ||
"name": "markerwithlabel", | ||
"version": "1.1.11", | ||
"version": "1.1.12", | ||
"description": "npm module of Google Map utility's Marker With Label", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
46027
549