always use poster

This commit is contained in:
j 2024-02-06 12:42:52 +01:00
parent 384519ed52
commit 3f128612ba
1 changed files with 3 additions and 3 deletions

View File

@ -296,14 +296,14 @@ window.VideoElement = function(options) {
video = queue.pop();
} else {
video = document.createElement('video');
if (self.options.poster) {
video.poster = self.options.poster
}
restrictedElements.push(video);
}
} else {
video = document.createElement('video');
}
if (self.options.poster) {
video.poster = self.options.poster
}
video.playsinline = true
video.setAttribute('playsinline', 'playsinline')
video.setAttribute('webkit-playsinline', 'webkit-playsinline')