mol_plot_all 1.2.632 → 1.2.633

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/node.mjs CHANGED
@@ -2842,7 +2842,12 @@ var $;
2842
2842
  ensure_visible(view, align = "start") {
2843
2843
  const path = this.view_find(v => v === view).next().value;
2844
2844
  this.force_render(new Set(path));
2845
- this.dom_final();
2845
+ try {
2846
+ this.dom_final();
2847
+ }
2848
+ catch (err) {
2849
+ $mol_fail_log(err);
2850
+ }
2846
2851
  view.dom_node().scrollIntoView({ block: align });
2847
2852
  }
2848
2853
  bring() {
package/node.test.js CHANGED
@@ -2834,7 +2834,12 @@ var $;
2834
2834
  ensure_visible(view, align = "start") {
2835
2835
  const path = this.view_find(v => v === view).next().value;
2836
2836
  this.force_render(new Set(path));
2837
- this.dom_final();
2837
+ try {
2838
+ this.dom_final();
2839
+ }
2840
+ catch (err) {
2841
+ $mol_fail_log(err);
2842
+ }
2838
2843
  view.dom_node().scrollIntoView({ block: align });
2839
2844
  }
2840
2845
  bring() {