mirror of
https://github.com/acid-info/lsd.git
synced 2025-02-10 16:06:23 +00:00
24 lines
550 B
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>
|