@extscreen/es-core 2.3.24 → 2.3.25
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 +10 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -801,6 +801,7 @@ class ESModule {
|
|
|
801
801
|
pageLimit: params.pageLimit,
|
|
802
802
|
backgroundColor: params.backgroundColor,
|
|
803
803
|
splash: params.splash,
|
|
804
|
+
transparent: params.transparent,
|
|
804
805
|
});
|
|
805
806
|
}
|
|
806
807
|
|
|
@@ -1552,7 +1553,7 @@ class ESSPDataModule {
|
|
|
1552
1553
|
});
|
|
1553
1554
|
}
|
|
1554
1555
|
}
|
|
1555
|
-
|
|
1556
|
+
return Promise.resolve(false);
|
|
1556
1557
|
}
|
|
1557
1558
|
);
|
|
1558
1559
|
}
|
|
@@ -1807,9 +1808,16 @@ var ESLocation = {
|
|
|
1807
1808
|
|
|
1808
1809
|
methods: {
|
|
1809
1810
|
__onLocationChangedMessage(message) {
|
|
1811
|
+
if (ESLog.isLoggable(ESLog.DEBUG)) {
|
|
1812
|
+
ESLog.d('ESLocationManager', '---------onLocationChange--------->>>>' + JSON.stringify(message));
|
|
1813
|
+
}
|
|
1814
|
+
const action = message.action;
|
|
1815
|
+
if (action !== 'onESLocationChanged') {
|
|
1816
|
+
return
|
|
1817
|
+
}
|
|
1810
1818
|
this.onLocationChange(message.extras);
|
|
1811
1819
|
},
|
|
1812
|
-
onLocationChange(
|
|
1820
|
+
onLocationChange(location) {
|
|
1813
1821
|
},
|
|
1814
1822
|
},
|
|
1815
1823
|
|