@xuda.io/runtime-bundle 1.0.881 → 1.0.882
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/js/xuda-runtime-slim.js
CHANGED
|
@@ -13545,10 +13545,14 @@ func.UI.screen.execute_screen_ready_events = async function (SESSION_ID, paramsP
|
|
|
13545
13545
|
}
|
|
13546
13546
|
return viewEventExec_arr.length;
|
|
13547
13547
|
};
|
|
13548
|
+
try {
|
|
13549
|
+
let count = await get_view_events_count('screen_ready');
|
|
13548
13550
|
|
|
13549
|
-
|
|
13550
|
-
|
|
13551
|
-
|
|
13551
|
+
if (!count) return;
|
|
13552
|
+
return await execute_view_events(sourceP);
|
|
13553
|
+
} catch (error) {
|
|
13554
|
+
debugger;
|
|
13555
|
+
}
|
|
13552
13556
|
};
|
|
13553
13557
|
func.UI.screen.screen_loading_done = async function (SESSION_ID, paramsP, $div, jobNoP) {
|
|
13554
13558
|
// await
|
|
@@ -11272,10 +11272,14 @@ func.UI.screen.execute_screen_ready_events = async function (SESSION_ID, paramsP
|
|
|
11272
11272
|
}
|
|
11273
11273
|
return viewEventExec_arr.length;
|
|
11274
11274
|
};
|
|
11275
|
+
try {
|
|
11276
|
+
let count = await get_view_events_count('screen_ready');
|
|
11275
11277
|
|
|
11276
|
-
|
|
11277
|
-
|
|
11278
|
-
|
|
11278
|
+
if (!count) return;
|
|
11279
|
+
return await execute_view_events(sourceP);
|
|
11280
|
+
} catch (error) {
|
|
11281
|
+
debugger;
|
|
11282
|
+
}
|
|
11279
11283
|
};
|
|
11280
11284
|
func.UI.screen.screen_loading_done = async function (SESSION_ID, paramsP, $div, jobNoP) {
|
|
11281
11285
|
// await
|