@xuda.io/runtime-bundle 1.0.1048 → 1.0.1050
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
|
@@ -12672,7 +12672,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
12672
12672
|
};
|
|
12673
12673
|
|
|
12674
12674
|
const post_render = async function () {
|
|
12675
|
-
let nodeP = $container.data().xuData.node[keyP];
|
|
12675
|
+
let nodeP = $container.data().xuData.node.children[keyP];
|
|
12676
12676
|
nodeP.xu_render_made = value;
|
|
12677
12677
|
if (value) {
|
|
12678
12678
|
try {
|
|
@@ -14813,7 +14813,7 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
|
|
|
14813
14813
|
};
|
|
14814
14814
|
|
|
14815
14815
|
const draw_html_element = async function (element) {
|
|
14816
|
-
let temp_$container = $('<tmp>');
|
|
14816
|
+
let temp_$container = $('<tmp>').data('xuData', $container.data().xuData);
|
|
14817
14817
|
if (!glb.new_xu_render) {
|
|
14818
14818
|
temp_$container = $container;
|
|
14819
14819
|
}
|
|
@@ -10397,7 +10397,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
10397
10397
|
};
|
|
10398
10398
|
|
|
10399
10399
|
const post_render = async function () {
|
|
10400
|
-
let nodeP = $container.data().xuData.node[keyP];
|
|
10400
|
+
let nodeP = $container.data().xuData.node.children[keyP];
|
|
10401
10401
|
nodeP.xu_render_made = value;
|
|
10402
10402
|
if (value) {
|
|
10403
10403
|
try {
|
|
@@ -12538,7 +12538,7 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
|
|
|
12538
12538
|
};
|
|
12539
12539
|
|
|
12540
12540
|
const draw_html_element = async function (element) {
|
|
12541
|
-
let temp_$container = $('<tmp>');
|
|
12541
|
+
let temp_$container = $('<tmp>').data('xuData', $container.data().xuData);
|
|
12542
12542
|
if (!glb.new_xu_render) {
|
|
12543
12543
|
temp_$container = $container;
|
|
12544
12544
|
}
|