Fix lightbox

This commit is contained in:
simon987 2023-01-26 20:20:58 -05:00
parent c625c03552
commit 9972e21fcc
3 changed files with 12 additions and 8 deletions

File diff suppressed because one or more lines are too long

View File

@ -160,9 +160,13 @@ export default {
},
onSlideChange() {
// Pause all videos when changing slide
document.getElementsByTagName("video").forEach((el) => {
const videos = document.getElementsByTagName("video");
if (videos.length === 0) {
return
}
for (let el of videos) {
el.pause();
});
}
},
}

File diff suppressed because one or more lines are too long