This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Get all the videos in the slides | |
const videos: NodeListOf<HTMLVideoElement> = document.querySelectorAll("video"); | |
const iframeVideos: NodeListOf<HTMLIFrameElement> = | |
document.querySelectorAll("iframe"); | |
// pause all the HTML videos | |
if (videos.length > 0) { | |
videos.forEach((videoItem) => { | |
videoItem.pause(); |