Files
rr3-apk/assets/fyb_iframe_endcard_tmpl.html
supermegamestre 4bbd74a497 First Upload
Just the APK
Force update disabled, will only work offline.
2026-01-26 00:26:29 -03:00

15 lines
520 B
HTML

<script>
var ifr = document.createElement('iframe');
window.addEventListener('load', function(e) {
ifr.setAttribute('src', '$__SrcIframeUrl__$');
ifr.setAttribute('style', 'display:block; border:none; margin:0; padding:0; overflow:hidden;');
ifr.width = window.innerWidth;
document.body.appendChild(ifr);
});
window.addEventListener('resize', function(e) {
ifr.width = document.body.clientWidth;
ifr.height = document.body.clientHeight;
});
</script>