You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
579 B

  1. // This file will be loaded on embed pages, regardless of theme.
  2. window.addEventListener('message', e => {
  3. const data = e.data || {};
  4. if (!window.parent || data.type !== 'setHeight') {
  5. return;
  6. }
  7. function setEmbedHeight () {
  8. window.parent.postMessage({
  9. type: 'setHeight',
  10. id: data.id,
  11. height: document.getElementsByTagName('html')[0].scrollHeight,
  12. }, '*');
  13. };
  14. if (['interactive', 'complete'].includes(document.readyState)) {
  15. setEmbedHeight();
  16. } else {
  17. document.addEventListener('DOMContentLoaded', setEmbedHeight);
  18. }
  19. });