mastodon/app/javascript/core/embed.js

26 lines
608 B
JavaScript
Raw Normal View History

2017-11-19 00:12:52 +01:00
// This file will be loaded on embed pages, regardless of theme.
import 'packs/public-path';
2017-11-19 00:12:52 +01:00
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-21 07:13:37 +01:00
};
2017-11-19 00:12:52 +01:00
if (['interactive', 'complete'].includes(document.readyState)) {
setEmbedHeight();
} else {
document.addEventListener('DOMContentLoaded', setEmbedHeight);
}
});