@Advokaten
Module.register("iFrame",{
// Default module config.
defaults: {
height:"300px",
width:"100%"
},
start: function(){
setTimeout(() => {this.delayLoad = true; this.updateDom();}, 2 * 60 * 1000);
},
// Override dom generator.
getDom: function() {
var iframe = document.createElement("IFRAME");
if(this.delayLoad){
iframe.style = "border:0";
iframe.width = this.config.width;
iframe.height = this.config.height;
iframe.src = this.config.url;
}
return iframe;
}
});