@xuda.io/runtime-bundle 1.0.876 → 1.0.877
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
|
@@ -14865,7 +14865,8 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
|
|
|
14865
14865
|
|
|
14866
14866
|
const height = $div.data().xuData.viewport_height;
|
|
14867
14867
|
if (typeof height !== 'undefined') {
|
|
14868
|
-
$div.css('height', 'unset');
|
|
14868
|
+
// $div.css('height', 'unset');
|
|
14869
|
+
$div[0].style.removeProperty('height');
|
|
14869
14870
|
}
|
|
14870
14871
|
|
|
14871
14872
|
if (UI_WORKER_OBJ.cache[$div.attr('xu-ui-id')]) {
|
|
@@ -12573,7 +12573,8 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
|
|
|
12573
12573
|
|
|
12574
12574
|
const height = $div.data().xuData.viewport_height;
|
|
12575
12575
|
if (typeof height !== 'undefined') {
|
|
12576
|
-
$div.css('height', 'unset');
|
|
12576
|
+
// $div.css('height', 'unset');
|
|
12577
|
+
$div[0].style.removeProperty('height');
|
|
12577
12578
|
}
|
|
12578
12579
|
|
|
12579
12580
|
if (UI_WORKER_OBJ.cache[$div.attr('xu-ui-id')]) {
|