UNPKG

liftie

Version:

Clean, simple, easy to read, fast ski resort lift status

29 lines (24 loc) 549 B
const debounce = require('debounce'); module.exports = postHeight; /*global window, document*/ function notify() { const widget = document.querySelector('.widget'); if (!widget) { return; } window.parent.postMessage( { height: widget.scrollHeight, resort: window.location.pathname.split('/').pop() }, '*' ); } function postHeight() { if (window === window.parent) { // we are not embedded - nothing to do return; } notify(); window.addEventListener('resize', debounce(notify, 300), true); }