@extscreen/es-core 2.3.1 → 2.3.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/dist/index.js +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -2033,9 +2033,9 @@ class ESApp {
|
|
2033
2033
|
return this._application;
|
2034
2034
|
}
|
2035
2035
|
|
2036
|
-
$
|
2036
|
+
$off(event, args) {
|
2037
2037
|
if (this._application) {
|
2038
|
-
this._application.$
|
2038
|
+
this._application.$off(event, args);
|
2039
2039
|
}
|
2040
2040
|
}
|
2041
2041
|
|