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/svg-map.umd.js
CHANGED
|
@@ -893,13 +893,14 @@
|
|
|
893
893
|
mapContinentControlsWrapper
|
|
894
894
|
);
|
|
895
895
|
var that = this;
|
|
896
|
-
|
|
896
|
+
|
|
897
|
+
Object.keys(this.continents).forEach(function (item) {
|
|
897
898
|
let element = that.createElement(
|
|
898
899
|
'option',
|
|
899
900
|
'svgMap-continent-option svgMap-continent-iso-' +
|
|
900
|
-
|
|
901
|
+
that.continents[item].iso,
|
|
901
902
|
that['continentSelect'],
|
|
902
|
-
|
|
903
|
+
that.continents[item].name
|
|
903
904
|
);
|
|
904
905
|
element.value = item;
|
|
905
906
|
});
|