@xuda.io/runtime-bundle 1.0.963 → 1.0.964
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
|
@@ -8415,13 +8415,13 @@ func.UI.worker.init = async function (SESSION_ID) {
|
|
|
8415
8415
|
if (!running_xu_ui_id) continue;
|
|
8416
8416
|
|
|
8417
8417
|
$.each(running_job_obj.elementP.find('*'), function (key, val) {
|
|
8418
|
-
const xu_ui_id = val.
|
|
8418
|
+
const xu_ui_id = $(val).attr('xu-ui-id');
|
|
8419
8419
|
if (!xu_ui_id) return true;
|
|
8420
8420
|
running_job_children_elements.push(xu_ui_id);
|
|
8421
8421
|
});
|
|
8422
8422
|
|
|
8423
8423
|
$.each(val.elementP.find('*'), function (key, val) {
|
|
8424
|
-
const xu_ui_id = val.
|
|
8424
|
+
const xu_ui_id = $(val).attr('xu-ui-id');
|
|
8425
8425
|
if (!xu_ui_id) return true;
|
|
8426
8426
|
active_job_children_elements.push(xu_ui_id);
|
|
8427
8427
|
});
|
|
@@ -8416,13 +8416,13 @@ func.UI.worker.init = async function (SESSION_ID) {
|
|
|
8416
8416
|
if (!running_xu_ui_id) continue;
|
|
8417
8417
|
|
|
8418
8418
|
$.each(running_job_obj.elementP.find('*'), function (key, val) {
|
|
8419
|
-
const xu_ui_id = val.
|
|
8419
|
+
const xu_ui_id = $(val).attr('xu-ui-id');
|
|
8420
8420
|
if (!xu_ui_id) return true;
|
|
8421
8421
|
running_job_children_elements.push(xu_ui_id);
|
|
8422
8422
|
});
|
|
8423
8423
|
|
|
8424
8424
|
$.each(val.elementP.find('*'), function (key, val) {
|
|
8425
|
-
const xu_ui_id = val.
|
|
8425
|
+
const xu_ui_id = $(val).attr('xu-ui-id');
|
|
8426
8426
|
if (!xu_ui_id) return true;
|
|
8427
8427
|
active_job_children_elements.push(xu_ui_id);
|
|
8428
8428
|
});
|