mirror of
https://github.com/cloud-shuttle/leptos-shadcn-ui.git
synced 2025-12-22 22:00:00 +00:00
14 lines
410 B
JavaScript
14 lines
410 B
JavaScript
document.addEventListener('DOMContentLoaded', () => {
|
|
const resizeObserver = new ResizeObserver(() => {
|
|
if (window.top) {
|
|
window.top.postMessage({
|
|
mdbookTrunk: {
|
|
width: document.body.scrollWidth,
|
|
height: document.body.scrollHeight
|
|
}
|
|
});
|
|
}
|
|
});
|
|
resizeObserver.observe(document.body);
|
|
});
|