Thank you so much, that was exactly what I was looking for!
I can’t believe I did not find it with by searching, I thought I checked all the modules and forums…
Someone added the possibility to get rid of the scrolling bars in the iframe module. I just copied the code from the iframe module and it works in the iframe reload module, too.
I don´t want to take credit for it since I just copied it, but if it helps someone else, here is what I did:
I added “iframe.scrolling = this.config.scrolling;” in the module file, there:
// Override dom generator.
getDom: function() {
var iframe = document.createElement(“IFRAME”);
iframe.style = “border:0”
iframe.width = this.config.width;
iframe.height = this.config.height;
iframe.scrolling = this.config.scrolling;
iframe.src = this.config.url;
return iframe;
},
After that, you can set “scrolling:“no”,” in the within the module in the config file.
Thanks again!