Files
ontime/apps/client/src/common/components/autocomplete-input/autocompleteInput.utils.ts
T
2026-03-30 22:22:24 +02:00

15 lines
377 B
TypeScript

export function getScrollParent(node: HTMLElement | null): HTMLElement | Window {
let parent = node?.parentElement ?? null;
while (parent) {
const { overflowY } = window.getComputedStyle(parent);
if (overflowY === 'auto' || overflowY === 'scroll' || overflowY === 'overlay') {
return parent;
}
parent = parent.parentElement;
}
return window;
}