Harden video_embed.js, store URL in data-src

This commit is contained in:
rubenwardy 2022-01-25 21:52:46 +00:00
parent ae88360e20
commit 8f2a87e5ed
1 changed files with 26 additions and 18 deletions

View File

@ -1,5 +1,7 @@
document.querySelectorAll(".video-embed").forEach(ele => {
const url = new URL(ele.getAttribute("href"));
try {
const href = ele.getAttribute("href");
const url = new URL(href);
if (url.host == "www.youtube.com") {
ele.addEventListener("click", () => {
@ -19,6 +21,12 @@ document.querySelectorAll(".video-embed").forEach(ele => {
const iframe = ele.children[0];
iframe.setAttribute("src", embedURL);
});
ele.setAttribute("data-src", href);
ele.removeAttribute("href");
}
} catch (e) {
console.error(url);
return;
}
});