mol_plot_all 1.2.631 → 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/web.mjs CHANGED
@@ -2275,7 +2275,12 @@ var $;
2275
2275
  ensure_visible(view, align = "start") {
2276
2276
  const path = this.view_find(v => v === view).next().value;
2277
2277
  this.force_render(new Set(path));
2278
- this.dom_final();
2278
+ try {
2279
+ this.dom_final();
2280
+ }
2281
+ catch (err) {
2282
+ $mol_fail_log(err);
2283
+ }
2279
2284
  view.dom_node().scrollIntoView({ block: align });
2280
2285
  }
2281
2286
  bring() {