@extscreen/es-core 2.2.30 → 2.2.32
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 +1 -7
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -2468,9 +2468,6 @@ class ESLaunchManager {
|
|
2468
2468
|
}
|
2469
2469
|
|
2470
2470
|
launchESPage(intent) {
|
2471
|
-
if (!intent || !intent.url) {
|
2472
|
-
return;
|
2473
|
-
}
|
2474
2471
|
let url = intent.url;
|
2475
2472
|
let params = intent.params;
|
2476
2473
|
|
@@ -2495,9 +2492,6 @@ class ESLaunchManager {
|
|
2495
2492
|
}
|
2496
2493
|
|
2497
2494
|
launchAfterFinishESPage(intent) {
|
2498
|
-
if (!intent || !intent.url) {
|
2499
|
-
return;
|
2500
|
-
}
|
2501
2495
|
let url = intent.url;
|
2502
2496
|
let params = intent.params;
|
2503
2497
|
|
@@ -4343,7 +4337,7 @@ var ESApplication = {
|
|
4343
4337
|
);
|
4344
4338
|
},
|
4345
4339
|
_initESApplication() {
|
4346
|
-
ESLaunchManager
|
4340
|
+
// ESLaunchManager.setRouteListener(this._routeListener)
|
4347
4341
|
this._initESAppParams();
|
4348
4342
|
},
|
4349
4343
|
_routeListener(url, params) {
|