analytics/assets/js/embed.content.js

17 lines
351 B
JavaScript
Raw Normal View History

import 'iframe-resizer/js/iframeResizer.contentWindow'
window.iFrameResizer = {
onMessage: function(msg) {
if (msg.type === 'load-custom-styles') {
addCustomStyles(msg.opts)
}
}
}
function addCustomStyles(opts) {
var style = document.createElement('style');
style.innerHTML = opts.styles
document.head.appendChild(style);
}