@xuda.io/runtime-bundle 1.0.872 → 1.0.873
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.
|
@@ -27869,13 +27869,13 @@ func.UI.worker.execute = async function (SESSION_ID, queue_obj) {
|
|
|
27869
27869
|
// $div.css('height', 'unset');
|
|
27870
27870
|
// }
|
|
27871
27871
|
|
|
27872
|
-
const height = $div.data().xuData.viewport_height;
|
|
27873
|
-
if (typeof height !== 'undefined') {
|
|
27874
|
-
|
|
27875
|
-
} else {
|
|
27876
|
-
|
|
27877
|
-
|
|
27878
|
-
}
|
|
27872
|
+
// const height = $div.data().xuData.viewport_height;
|
|
27873
|
+
// if (typeof height !== 'undefined') {
|
|
27874
|
+
// $div.css('height', 'unset');
|
|
27875
|
+
// } else {
|
|
27876
|
+
$div.data().xuData.viewport_height = $div.height();
|
|
27877
|
+
// func.UI.worker.add_to_queue(SESSION_ID, 'gui event', 'set_viewport_height', { $elm: $div.parent(), height: $div.height() }, null, null, paramsP.dsSessionP);
|
|
27878
|
+
// }
|
|
27879
27879
|
}
|
|
27880
27880
|
|
|
27881
27881
|
return func.UI.worker.delete_job(SESSION_ID, queue_obj.job_num);
|
|
@@ -34523,6 +34523,11 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
|
|
|
34523
34523
|
return;
|
|
34524
34524
|
}
|
|
34525
34525
|
|
|
34526
|
+
const height = $div.data().xuData.viewport_height;
|
|
34527
|
+
if (typeof height !== 'undefined') {
|
|
34528
|
+
$div.css('height', 'unset');
|
|
34529
|
+
}
|
|
34530
|
+
|
|
34526
34531
|
if (UI_WORKER_OBJ.cache[$div.attr('xu-ui-id')]) {
|
|
34527
34532
|
$div.removeClass('skeleton');
|
|
34528
34533
|
$div.html(UI_WORKER_OBJ.cache[$div.attr('xu-ui-id')]);
|