@xuda.io/runtime-bundle 1.0.847 → 1.0.848
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
|
@@ -14793,7 +14793,7 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
|
|
|
14793
14793
|
});
|
|
14794
14794
|
|
|
14795
14795
|
$div.on('outViewport', function () {
|
|
14796
|
-
UI_WORKER_OBJ.cache[$div.attr('xu-ui-id')] = $div.clone();
|
|
14796
|
+
UI_WORKER_OBJ.cache[$div.attr('xu-ui-id')] = $div.children().clone();
|
|
14797
14797
|
$div.empty();
|
|
14798
14798
|
$div.addClass('skeleton');
|
|
14799
14799
|
observer_inViewport.observe($div[0]);
|
|
@@ -12501,7 +12501,7 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
|
|
|
12501
12501
|
});
|
|
12502
12502
|
|
|
12503
12503
|
$div.on('outViewport', function () {
|
|
12504
|
-
UI_WORKER_OBJ.cache[$div.attr('xu-ui-id')] = $div.clone();
|
|
12504
|
+
UI_WORKER_OBJ.cache[$div.attr('xu-ui-id')] = $div.children().clone();
|
|
12505
12505
|
$div.empty();
|
|
12506
12506
|
$div.addClass('skeleton');
|
|
12507
12507
|
observer_inViewport.observe($div[0]);
|