svgmap 2.18.0 → 2.18.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +4 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +4 -3
- package/dist/index.js.map +1 -1
- package/dist/svg-map.umd.js +4 -3
- package/dist/svg-map.umd.js.map +1 -1
- package/dist/svg-map.umd.min.js +1 -1
- package/dist/svgMap.js +4 -3
- package/dist/svgMap.js.map +1 -1
- package/dist/svgMap.min.js +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -889,13 +889,14 @@ class svgMap {
|
|
|
889
889
|
mapContinentControlsWrapper
|
|
890
890
|
);
|
|
891
891
|
var that = this;
|
|
892
|
-
|
|
892
|
+
|
|
893
|
+
Object.keys(this.continents).forEach(function (item) {
|
|
893
894
|
let element = that.createElement(
|
|
894
895
|
'option',
|
|
895
896
|
'svgMap-continent-option svgMap-continent-iso-' +
|
|
896
|
-
|
|
897
|
+
that.continents[item].iso,
|
|
897
898
|
that['continentSelect'],
|
|
898
|
-
|
|
899
|
+
that.continents[item].name
|
|
899
900
|
);
|
|
900
901
|
element.value = item;
|
|
901
902
|
});
|