lsd/packages/lsd-react/.storybook/preview-head.html

24 lines
550 B
HTML

<script>
function sendHeightToParent() {
const height =
document.documentElement.scrollHeight || document.body.scrollHeight
window.parent.postMessage(
{
type: 'iframeResize',
height: height,
},
'*',
)
}
document.addEventListener('DOMContentLoaded', function () {
// Send initial height.
sendHeightToParent()
// Ensure the interval is set only once.
if (!window.heightIntervalSet) {
window.heightIntervalSet = setInterval(sendHeightToParent, 1000)
}
})
</script>