@xuda.io/runtime-bundle 1.0.1361 → 1.0.1362

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.
@@ -34928,6 +34928,8 @@ func.UI.screen.create_container = async function (SESSION_ID, $root_container, n
34928
34928
  let ret = '';
34929
34929
  if (node.children) {
34930
34930
  for (let val of node.children) {
34931
+ if (val.type === 'comment') continue;
34932
+
34931
34933
  let prop = val.attributes;
34932
34934
  ret += get_tag_str(val.tagName, prop, val);
34933
34935
  }
@@ -41440,7 +41442,7 @@ function xuda(...args) {
41440
41442
  }
41441
41443
 
41442
41444
  if ($('template').length) {
41443
- const module = await func.common.get_module(SESSION_ID, 'xuda-cli-plugin-html-parser-module.esm.js');
41445
+ const module = await func.common.get_module(SESSION_ID, 'xuda-cli-plugin-html-parser-module.esm.mjs');
41444
41446
 
41445
41447
  $.each($('template'), function (idx, el) {
41446
41448
  const _id = $(el).attr('id') || 'template_' + idx.toString();