mol_plot_all 1.2.632 → 1.2.634
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.deps.json +1 -1
- package/node.js +6 -1
- package/node.js.map +1 -1
- package/node.mjs +6 -1
- package/node.test.js +6 -1
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.deps.json +1 -1
- package/web.js +6 -1
- package/web.js.map +1 -1
- package/web.mjs +6 -1
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
|
-
|
|
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() {
|