@xuda.io/runtime-bundle 1.0.862 → 1.0.863
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
|
@@ -11529,8 +11529,8 @@ func.UI.screen.init = async function (SESSION_ID, prog_id, sourceScreenP, callin
|
|
|
11529
11529
|
const height = val.base_$div.height();
|
|
11530
11530
|
if (height) {
|
|
11531
11531
|
const total_height = height * val.data.length || 1;
|
|
11532
|
-
if (total_height >
|
|
11533
|
-
|
|
11532
|
+
if (total_height > val.$container.height()) {
|
|
11533
|
+
val.$container.css('height', height * val.data.length);
|
|
11534
11534
|
}
|
|
11535
11535
|
}
|
|
11536
11536
|
debugger;
|
|
@@ -9237,8 +9237,8 @@ func.UI.screen.init = async function (SESSION_ID, prog_id, sourceScreenP, callin
|
|
|
9237
9237
|
const height = val.base_$div.height();
|
|
9238
9238
|
if (height) {
|
|
9239
9239
|
const total_height = height * val.data.length || 1;
|
|
9240
|
-
if (total_height >
|
|
9241
|
-
|
|
9240
|
+
if (total_height > val.$container.height()) {
|
|
9241
|
+
val.$container.css('height', height * val.data.length);
|
|
9242
9242
|
}
|
|
9243
9243
|
}
|
|
9244
9244
|
debugger;
|