always use poster

This commit is contained in:
j 2024-02-06 12:42:52 +01:00
parent 384519ed52
commit 3f128612ba

View file

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