mirror of
https://github.com/danbulant/lucide
synced 2026-06-09 17:50:31 +00:00
13 lines
410 B
JavaScript
13 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);
|
|
});
|