@extscreen/es-core 10000.0.15 → 10000.0.16
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 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1763,6 +1763,7 @@ class ESLaunchManager {
|
|
|
1763
1763
|
|
|
1764
1764
|
_ESRouter = null;
|
|
1765
1765
|
_ESRouterEnabled = true;
|
|
1766
|
+
_initTime = 0;
|
|
1766
1767
|
|
|
1767
1768
|
init(router) {
|
|
1768
1769
|
this._ESRouter = router;
|
|
@@ -1773,6 +1774,7 @@ class ESLaunchManager {
|
|
|
1773
1774
|
'_ESRouter: ' + this._ESRouter
|
|
1774
1775
|
);
|
|
1775
1776
|
}
|
|
1777
|
+
this._initTime = new Date().getTime();
|
|
1776
1778
|
return Promise.resolve();
|
|
1777
1779
|
}
|
|
1778
1780
|
|