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.
@@ -893,13 +893,14 @@
893
893
  mapContinentControlsWrapper
894
894
  );
895
895
  var that = this;
896
- Object.keys(svgMap.prototype.continents).forEach(function (item) {
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
- svgMap.prototype.continents[item].iso,
901
+ that.continents[item].iso,
901
902
  that['continentSelect'],
902
- svgMap.prototype.continents[item].name
903
+ that.continents[item].name
903
904
  );
904
905
  element.value = item;
905
906
  });