@extscreen/es-core 2.2.57 → 2.2.59
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 +4 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -2480,6 +2480,9 @@ class ESLaunchManager {
|
|
2480
2480
|
pageTag: intent.pageTag,
|
2481
2481
|
pageLimit: intent.pageLimit,
|
2482
2482
|
backgroundColor: intent.backgroundColor,
|
2483
|
+
//
|
2484
|
+
pkg: intent.packageName,
|
2485
|
+
splash: intent.splash,
|
2483
2486
|
});
|
2484
2487
|
}
|
2485
2488
|
|
@@ -3278,7 +3281,7 @@ class ESEventBus {
|
|
3278
3281
|
if (ESLog.isLoggable(ESLog.DEBUG)) {
|
3279
3282
|
ESLog.d('ESEventBus', '#-----init----->>>>>' + this._vueEventBusSupported);
|
3280
3283
|
}
|
3281
|
-
return
|
3284
|
+
return Promise.resolve();
|
3282
3285
|
}
|
3283
3286
|
|
3284
3287
|
isVueEventBusSupported() {
|