adt-js-components 1.5.4 → 1.5.5

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/Map/index.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adt-js-components",
3
- "version": "1.5.4",
3
+ "version": "1.5.5",
4
4
  "description": "JavaScript components for Nette framework",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/src/Map/index.js CHANGED
@@ -100,7 +100,7 @@ async function run(options) {
100
100
  if (mutation.type === "childList") {
101
101
  mutation.addedNodes.forEach(node => {
102
102
  if (node.nodeType === 1 && node.hasAttribute("data-adt-map")) {
103
- handleMapElement(node);
103
+ applyEventHandlers(node);
104
104
  }
105
105
  });
106
106
  }