@xuda.io/runtime-bundle 1.0.768 → 1.0.769
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
|
@@ -14672,7 +14672,7 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
|
|
|
14672
14672
|
);
|
|
14673
14673
|
|
|
14674
14674
|
let ret = await func.UI.screen.set_attributes_new(SESSION_ID, is_skeleton, $root_container, nodeP, $container, paramsP, parent_infoP, jobNoP, keyP, parent_nodeP, $div, true);
|
|
14675
|
-
if (ret.abort) return await done();
|
|
14675
|
+
if (ret.abort || nodeP.tagName === 'svg') return await done();
|
|
14676
14676
|
// check if iterator made to prevent children render
|
|
14677
14677
|
|
|
14678
14678
|
const ret_iterate_child = await iterate_child($div, nodeP, parent_infoP, null, $root_container);
|
|
@@ -12382,7 +12382,7 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
|
|
|
12382
12382
|
);
|
|
12383
12383
|
|
|
12384
12384
|
let ret = await func.UI.screen.set_attributes_new(SESSION_ID, is_skeleton, $root_container, nodeP, $container, paramsP, parent_infoP, jobNoP, keyP, parent_nodeP, $div, true);
|
|
12385
|
-
if (ret.abort) return await done();
|
|
12385
|
+
if (ret.abort || nodeP.tagName === 'svg') return await done();
|
|
12386
12386
|
// check if iterator made to prevent children render
|
|
12387
12387
|
|
|
12388
12388
|
const ret_iterate_child = await iterate_child($div, nodeP, parent_infoP, null, $root_container);
|