bruce-models 2.5.4 → 2.5.5

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.
@@ -11685,7 +11685,7 @@ var Plugin;
11685
11685
  ${fileContent}
11686
11686
 
11687
11687
  const paramsId = "${paramsId}";
11688
- const containerId = "${container.id}";
11688
+ const containerId = "${container ? container.id : ""}";
11689
11689
  let container;
11690
11690
  if (containerId) {
11691
11691
  container = document.getElementById("${container.id}");
@@ -11694,7 +11694,7 @@ var Plugin;
11694
11694
  const params = window["${paramsId}"];
11695
11695
 
11696
11696
  window["${disposeId}"] = Run({
11697
- container,
11697
+ container: container,
11698
11698
  pluginParams: params
11699
11699
  });
11700
11700
  }