@xuda.io/runtime-bundle 1.0.867 → 1.0.869
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.
|
@@ -27866,7 +27866,6 @@ func.UI.worker.execute = async function (SESSION_ID, queue_obj) {
|
|
|
27866
27866
|
}
|
|
27867
27867
|
|
|
27868
27868
|
if ($div.hasClass('viewport_height')) {
|
|
27869
|
-
$div.data().xuData.viewport_height = $div.height();
|
|
27870
27869
|
$div.css('height', 'unset');
|
|
27871
27870
|
}
|
|
27872
27871
|
}
|
|
@@ -27879,8 +27878,9 @@ func.UI.worker.execute = async function (SESSION_ID, queue_obj) {
|
|
|
27879
27878
|
// $elm.children().css('height', height);
|
|
27880
27879
|
|
|
27881
27880
|
$.each($elm.children(), function (key, elm) {
|
|
27882
|
-
if (!$(elm).height
|
|
27881
|
+
if (!$(elm).css('height') && !$(elm).children()) {
|
|
27883
27882
|
$(elm).css('height', height).addClass('viewport_height');
|
|
27883
|
+
$(elm).data().xuData.viewport_height = $div.height();
|
|
27884
27884
|
}
|
|
27885
27885
|
});
|
|
27886
27886
|
|