mirror of
https://github.com/xodio/xod.git
synced 2026-03-03 07:24:03 +01:00
11 lines
271 B
JavaScript
11 lines
271 B
JavaScript
export default function scrollTo(page, containerHandle, childHandle) {
|
|
return page.evaluate(
|
|
(container, child) => {
|
|
// eslint-disable-next-line no-param-reassign
|
|
container.scrollTop = child.offsetTop;
|
|
},
|
|
containerHandle,
|
|
childHandle
|
|
);
|
|
}
|