adt-js-components 1.5.6 → 1.5.7

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 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adt-js-components",
3
- "version": "1.5.6",
3
+ "version": "1.5.7",
4
4
  "description": "JavaScript components for Nette framework",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/src/Map/index.js CHANGED
@@ -104,6 +104,7 @@ async function run(options) {
104
104
  map.on('zoomend', window[callback]);
105
105
  map.on('moveend', window[callback]);
106
106
  map.on('dragend', window[callback]);
107
+ map.on('click', window[callback]);
107
108
  }
108
109
  }
109
110