@xuda.io/runtime-bundle 1.0.847 → 1.0.849
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.
|
@@ -34451,6 +34451,7 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
|
|
|
34451
34451
|
}
|
|
34452
34452
|
|
|
34453
34453
|
if (UI_WORKER_OBJ.cache[$div.attr('xu-ui-id')]) {
|
|
34454
|
+
$div.removeClass('skeleton');
|
|
34454
34455
|
$div.html(UI_WORKER_OBJ.cache[$div.attr('xu-ui-id')]);
|
|
34455
34456
|
} else {
|
|
34456
34457
|
hover_in($div);
|
|
@@ -34460,7 +34461,7 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
|
|
|
34460
34461
|
});
|
|
34461
34462
|
|
|
34462
34463
|
$div.on('outViewport', function () {
|
|
34463
|
-
UI_WORKER_OBJ.cache[$div.attr('xu-ui-id')] = $div.clone();
|
|
34464
|
+
UI_WORKER_OBJ.cache[$div.attr('xu-ui-id')] = $div.children().clone();
|
|
34464
34465
|
$div.empty();
|
|
34465
34466
|
$div.addClass('skeleton');
|
|
34466
34467
|
observer_inViewport.observe($div[0]);
|