@extscreen/es-core 1.0.4 → 1.0.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.
- package/dist/index.js +7 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -2169,6 +2169,10 @@ var ESLifecycleMixin = {
|
|
2169
2169
|
else if (event === 'onPause') {
|
2170
2170
|
this.onESPause();
|
2171
2171
|
}
|
2172
|
+
//
|
2173
|
+
else if (event === 'onDestroy') {
|
2174
|
+
this.onESDestroy();
|
2175
|
+
}
|
2172
2176
|
},
|
2173
2177
|
onActivityNewIntent(intent) {
|
2174
2178
|
this.onESNewIntent(intent);
|
@@ -2180,6 +2184,9 @@ var ESLifecycleMixin = {
|
|
2180
2184
|
},
|
2181
2185
|
onESPause() {
|
2182
2186
|
|
2187
|
+
},
|
2188
|
+
onESDestroy() {
|
2189
|
+
|
2183
2190
|
},
|
2184
2191
|
onESNewIntent(intent) {
|
2185
2192
|
|