@xuda.io/runtime-bundle 1.0.954 → 1.0.956
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.
|
@@ -33230,10 +33230,12 @@ func.UI.screen.execute_screen_ready_events = async function (SESSION_ID, paramsP
|
|
|
33230
33230
|
}
|
|
33231
33231
|
};
|
|
33232
33232
|
func.UI.screen.screen_loading_done = async function (SESSION_ID, paramsP, $div, jobNoP) {
|
|
33233
|
+
// console.log($div.attr('xu-ui-id'));
|
|
33234
|
+
|
|
33233
33235
|
// await
|
|
33234
33236
|
let retries = 0;
|
|
33235
33237
|
let interval = setInterval(() => {
|
|
33236
|
-
if (!$(SESSION_OBJ[SESSION_ID].root_element).find(`[xu-ui-id=${$div.attr('xu-ui-id')}]`).length && !$(SESSION_OBJ[SESSION_ID].root_element).find(`[xu-panel-wrapper-id=${$div.attr('xu-ui-id')}]`).length && $div.attr('xu-ui-id')) {
|
|
33238
|
+
if (!$(SESSION_OBJ[SESSION_ID].root_element).find(`[xu-ui-id=${$div.attr('xu-ui-id')}]`).length && !$(SESSION_OBJ[SESSION_ID].root_element).find(`[xu-panel-wrapper-id=${$div.attr('xu-ui-id')}]`).length && !$div.attr('xu-ui-id') && $div.attr('xu-ui-id')) {
|
|
33237
33239
|
retries++;
|
|
33238
33240
|
if (retries > 100) {
|
|
33239
33241
|
console.warn('deadlock detected for screen ready');
|