@extscreen/es-core 10000.1.8 → 10000.1.9
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 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1913,7 +1913,13 @@ function dispatchInstanceKeyEvent(componentInstance, keyEvent) {
|
|
|
1913
1913
|
|
|
1914
1914
|
|
|
1915
1915
|
function dispatchBackPressed(route) {
|
|
1916
|
+
if (ESLog.isLoggable(ESLog.DEBUG)) {
|
|
1917
|
+
ESLog.d(TAG$1, '#-------dispatchBackPressed---route-1->>>>>' + route);
|
|
1918
|
+
}
|
|
1916
1919
|
let instance = getComponentInstance(route);
|
|
1920
|
+
if (ESLog.isLoggable(ESLog.DEBUG)) {
|
|
1921
|
+
ESLog.d(TAG$1, '#-------dispatchBackPressed---instance-2->>>>>' + instance);
|
|
1922
|
+
}
|
|
1917
1923
|
dispatchInstanceBackPressed(instance);
|
|
1918
1924
|
}
|
|
1919
1925
|
|