@xuda.io/runtime-bundle 1.0.867 → 1.0.868
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
|
@@ -8776,7 +8776,6 @@ func.UI.worker.execute = async function (SESSION_ID, queue_obj) {
|
|
|
8776
8776
|
}
|
|
8777
8777
|
|
|
8778
8778
|
if ($div.hasClass('viewport_height')) {
|
|
8779
|
-
$div.data().xuData.viewport_height = $div.height();
|
|
8780
8779
|
$div.css('height', 'unset');
|
|
8781
8780
|
}
|
|
8782
8781
|
}
|
|
@@ -8791,6 +8790,7 @@ func.UI.worker.execute = async function (SESSION_ID, queue_obj) {
|
|
|
8791
8790
|
$.each($elm.children(), function (key, elm) {
|
|
8792
8791
|
if (!$(elm).height() && !$(elm).children()) {
|
|
8793
8792
|
$(elm).css('height', height).addClass('viewport_height');
|
|
8793
|
+
$(elm).data().xuData.viewport_height = $div.height();
|
|
8794
8794
|
}
|
|
8795
8795
|
});
|
|
8796
8796
|
|
|
@@ -8777,7 +8777,6 @@ func.UI.worker.execute = async function (SESSION_ID, queue_obj) {
|
|
|
8777
8777
|
}
|
|
8778
8778
|
|
|
8779
8779
|
if ($div.hasClass('viewport_height')) {
|
|
8780
|
-
$div.data().xuData.viewport_height = $div.height();
|
|
8781
8780
|
$div.css('height', 'unset');
|
|
8782
8781
|
}
|
|
8783
8782
|
}
|
|
@@ -8792,6 +8791,7 @@ func.UI.worker.execute = async function (SESSION_ID, queue_obj) {
|
|
|
8792
8791
|
$.each($elm.children(), function (key, elm) {
|
|
8793
8792
|
if (!$(elm).height() && !$(elm).children()) {
|
|
8794
8793
|
$(elm).css('height', height).addClass('viewport_height');
|
|
8794
|
+
$(elm).data().xuData.viewport_height = $div.height();
|
|
8795
8795
|
}
|
|
8796
8796
|
});
|
|
8797
8797
|
|