@xuda.io/runtime-bundle 1.0.313 → 1.0.314

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.
@@ -14861,14 +14861,20 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
14861
14861
  [`xu-single-view`]: async function () {
14862
14862
  var exist_elm_obj = get_element_info();
14863
14863
  var $div = exist_elm_obj.div;
14864
- _session.running_$div = $div;
14864
+
14865
+ if (!_session.running_$div) {
14866
+ _session.running_$div = [];
14867
+ }
14868
+
14869
+ _session.running_$div.push($div);
14870
+
14865
14871
  if (!exist_elm_obj.div) {
14866
14872
  var $wrapper = $('<div>');
14867
14873
  $div = func.UI.screen.create_container(SESSION_ID, $root_container, nodeP, $container, paramsP, parent_infoP, jobNoP, keyP, parent_nodeP, prop, null, null, 'div', $wrapper, '');
14868
14874
 
14869
- if (paramsP.is_panelP) {
14870
- var id = $div.attr('id');
14871
- }
14875
+ // if (paramsP.is_panelP) {
14876
+ // var id = $div.attr('id');
14877
+ // }
14872
14878
 
14873
14879
  if (!$div) return;
14874
14880
 
@@ -12271,14 +12271,20 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
12271
12271
  [`xu-single-view`]: async function () {
12272
12272
  var exist_elm_obj = get_element_info();
12273
12273
  var $div = exist_elm_obj.div;
12274
- _session.running_$div = $div;
12274
+
12275
+ if (!_session.running_$div) {
12276
+ _session.running_$div = [];
12277
+ }
12278
+
12279
+ _session.running_$div.push($div);
12280
+
12275
12281
  if (!exist_elm_obj.div) {
12276
12282
  var $wrapper = $('<div>');
12277
12283
  $div = func.UI.screen.create_container(SESSION_ID, $root_container, nodeP, $container, paramsP, parent_infoP, jobNoP, keyP, parent_nodeP, prop, null, null, 'div', $wrapper, '');
12278
12284
 
12279
- if (paramsP.is_panelP) {
12280
- var id = $div.attr('id');
12281
- }
12285
+ // if (paramsP.is_panelP) {
12286
+ // var id = $div.attr('id');
12287
+ // }
12282
12288
 
12283
12289
  if (!$div) return;
12284
12290