File size: 350 Bytes
936b397 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | 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)
}
|