@openglobus/og 0.16.1 → 0.16.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openglobus/og",
3
- "version": "0.16.1",
3
+ "version": "0.16.3",
4
4
  "description": "[OpenGlobus](https://www.openglobus.org/) is a javascript library designed to display interactive 3d maps and planets with map tiles, imagery and vector data, markers and 3d objects. It uses the WebGL technology, open source and completely free.",
5
5
  "directories": {
6
6
  "example": "./sandbox"
package/src/og/Events.js CHANGED
@@ -96,7 +96,8 @@ class Events {
96
96
  * @public
97
97
  * @param {string} name - Event name to listen.
98
98
  * @param {eventCallback} callback - Event callback function.
99
- * @param {Object} sender - Event callback function owner.
99
+ * @param {any} [sender] - Event callback function owner.
100
+ * @param {number} [priority] - Priority of event callback.
100
101
  */
101
102
  on(name, callback, sender, priority = 0) {
102
103
  if (this._stamp(name, callback)) {