mol_plot_all 1.2.355 → 1.2.356
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.d.ts +1 -1
- package/node.esm.js +2 -2
- package/node.esm.js.map +1 -1
- package/node.js +2 -2
- package/node.js.map +1 -1
- package/node.test.js +2 -2
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.d.ts +1 -1
- package/web.esm.js +2 -2
- package/web.esm.js.map +1 -1
- package/web.js +2 -2
- package/web.js.map +1 -1
package/node.test.js
CHANGED
|
@@ -2629,7 +2629,7 @@ var $;
|
|
|
2629
2629
|
kids[index].force_render(path);
|
|
2630
2630
|
}
|
|
2631
2631
|
}
|
|
2632
|
-
|
|
2632
|
+
ensure_visible(view, align = "start") {
|
|
2633
2633
|
const path = this.view_find(v => v === view).next().value;
|
|
2634
2634
|
this.force_render(new Set(path));
|
|
2635
2635
|
this.dom_final();
|
|
@@ -2637,7 +2637,7 @@ var $;
|
|
|
2637
2637
|
}
|
|
2638
2638
|
bring() {
|
|
2639
2639
|
new $mol_after_frame(() => {
|
|
2640
|
-
this.dom_node().scrollIntoView();
|
|
2640
|
+
this.dom_node().scrollIntoView({ inline: 'start' });
|
|
2641
2641
|
this.focused(true);
|
|
2642
2642
|
});
|
|
2643
2643
|
}
|