analytics / assets /js /embed.content.js
Leon4gr45's picture
Upload folder using huggingface_hub (part 2)
936b397 verified
Raw
History Blame Contribute Delete
350 Bytes
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)
}