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.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/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
|
-
|
|
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
|
-
|
|
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() {
|