Files
unicorn-utterances/src/utils/markdown/tables/tables-script.ts
2023-07-24 12:15:14 -07:00

12 lines
292 B
TypeScript

export const enableTables = () => {
const observer = new IntersectionObserver(
([e]) => {
(e.target as HTMLElement).dataset.sticky =
e.intersectionRatio < 1 ? "pinned" : "";
},
{ threshold: [1] },
);
document.querySelectorAll("thead").forEach((e) => observer.observe(e));
};