remove lazyloading from reddit embeds, it lags scrolling on mobile and causes annoying pagejumping

master
Aevann 2024-08-25 16:34:43 +03:00
parent 3191176ff2
commit 1a2ec2858d
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ function embed_reddit() {
iframe_src += "?context=1&showtitle=true"
if (document.body.dataset.dark)
iframe_src += "&theme=dark"
a.innerHTML = `<iframe class="reddit-embed" credentialless="true" loading="lazy" height="240" src="${iframe_src}" scrolling="no" sandbox="allow-scripts allow-popups allow-popups-to-escape-sandbox"></iframe>`
a.innerHTML = `<iframe class="reddit-embed" credentialless="true" height="240" src="${iframe_src}" scrolling="no" sandbox="allow-scripts allow-popups allow-popups-to-escape-sandbox"></iframe>`
}
}
embed_reddit()