@extscreen/es-core 1.0.3 → 1.0.4
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 +6 -6
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -2163,25 +2163,25 @@ var ESLifecycleMixin = {
|
|
2163
2163
|
methods: {
|
2164
2164
|
onActivityLifecycle(event) {
|
2165
2165
|
if (event === 'onResume') {
|
2166
|
-
this.
|
2166
|
+
this.onESResume();
|
2167
2167
|
}
|
2168
2168
|
//
|
2169
2169
|
else if (event === 'onPause') {
|
2170
|
-
this.
|
2170
|
+
this.onESPause();
|
2171
2171
|
}
|
2172
2172
|
},
|
2173
2173
|
onActivityNewIntent(intent) {
|
2174
|
-
this.
|
2174
|
+
this.onESNewIntent(intent);
|
2175
2175
|
},
|
2176
2176
|
|
2177
2177
|
//------------------------------------
|
2178
|
-
|
2178
|
+
onESResume() {
|
2179
2179
|
|
2180
2180
|
},
|
2181
|
-
|
2181
|
+
onESPause() {
|
2182
2182
|
|
2183
2183
|
},
|
2184
|
-
|
2184
|
+
onESNewIntent(intent) {
|
2185
2185
|
|
2186
2186
|
},
|
2187
2187
|
},
|