@xuda.io/runtime-bundle 1.0.856 → 1.0.857
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
|
@@ -11508,14 +11508,14 @@ func.UI.screen.init = async function (SESSION_ID, prog_id, sourceScreenP, callin
|
|
|
11508
11508
|
// $div.css(height, $div.parent().data().xuData.viewport_elm_height);
|
|
11509
11509
|
// }
|
|
11510
11510
|
|
|
11511
|
-
|
|
11511
|
+
for (const [parent_elm_xu_ui_id, val] of Object.entries(UI_WORKER_OBJ.viewport_info)) {
|
|
11512
|
+
val.$elm.children().css(innerHeight, val.height);
|
|
11513
|
+
}
|
|
11512
11514
|
|
|
11515
|
+
// for (const item of UI_WORKER_OBJ.viewport_info) {
|
|
11516
|
+
// item.children().css(innerHeight, item.height);
|
|
11513
11517
|
// }
|
|
11514
11518
|
|
|
11515
|
-
for (const item of UI_WORKER_OBJ.viewport_info) {
|
|
11516
|
-
item.children().css(innerHeight, item.height);
|
|
11517
|
-
}
|
|
11518
|
-
|
|
11519
11519
|
func.UI.utils.indicator.screen.normal();
|
|
11520
11520
|
|
|
11521
11521
|
let ret_screen_loading = await func.UI.screen.screen_loading_done(SESSION_ID, params, ret_render_$container, jobNoP);
|
|
@@ -9216,14 +9216,14 @@ func.UI.screen.init = async function (SESSION_ID, prog_id, sourceScreenP, callin
|
|
|
9216
9216
|
// $div.css(height, $div.parent().data().xuData.viewport_elm_height);
|
|
9217
9217
|
// }
|
|
9218
9218
|
|
|
9219
|
-
|
|
9219
|
+
for (const [parent_elm_xu_ui_id, val] of Object.entries(UI_WORKER_OBJ.viewport_info)) {
|
|
9220
|
+
val.$elm.children().css(innerHeight, val.height);
|
|
9221
|
+
}
|
|
9220
9222
|
|
|
9223
|
+
// for (const item of UI_WORKER_OBJ.viewport_info) {
|
|
9224
|
+
// item.children().css(innerHeight, item.height);
|
|
9221
9225
|
// }
|
|
9222
9226
|
|
|
9223
|
-
for (const item of UI_WORKER_OBJ.viewport_info) {
|
|
9224
|
-
item.children().css(innerHeight, item.height);
|
|
9225
|
-
}
|
|
9226
|
-
|
|
9227
9227
|
func.UI.utils.indicator.screen.normal();
|
|
9228
9228
|
|
|
9229
9229
|
let ret_screen_loading = await func.UI.screen.screen_loading_done(SESSION_ID, params, ret_render_$container, jobNoP);
|