This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-11-18 15:12:52 -08:00
|
|
|
// This file will be loaded on embed pages, regardless of theme.
|
|
|
|
|
|
|
|
window.addEventListener('message', e => {
|
|
|
|
const data = e.data || {};
|
|
|
|
|
|
|
|
if (!window.parent || data.type !== 'setHeight') {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
function setEmbedHeight () {
|
|
|
|
window.parent.postMessage({
|
|
|
|
type: 'setHeight',
|
|
|
|
id: data.id,
|
|
|
|
height: document.getElementsByTagName('html')[0].scrollHeight,
|
|
|
|
}, '*');
|
2017-11-20 22:13:37 -08:00
|
|
|
};
|
2017-11-18 15:12:52 -08:00
|
|
|
|
|
|
|
if (['interactive', 'complete'].includes(document.readyState)) {
|
|
|
|
setEmbedHeight();
|
|
|
|
} else {
|
|
|
|
document.addEventListener('DOMContentLoaded', setEmbedHeight);
|
|
|
|
}
|
|
|
|
});
|