fix(xgplayer): pip available

This commit is contained in:
legolaserea 2024-08-19 20:47:49 +08:00 committed by Xiong
parent b431c9ec35
commit 347ef3c5fe
2 changed files with 2 additions and 4 deletions

View File

@ -293,9 +293,7 @@ function init(index = 0, config = {}) {
}
},
url: "./heatmap.mp4",
DynamicBg: {
disable: false
},
pip: true,
loop: false,
autoplay: false,
autoplayMuted: true,

View File

@ -295,7 +295,7 @@ class PIP extends IconPlugin {
isPIPAvailable () {
const video = this.player.media
const _isEnabled = Util.typeOf(document.pictureInPictureEnabled) === 'Boolean' ? document.pictureInPictureEnabled : true
const _isEnabled = Util.typeOf(document.pictureInPictureEnabled) === 'Boolean' ? document.pictureInPictureEnabled : false
return _isEnabled &&
((Util.typeOf(video.disablePictureInPicture) === 'Boolean' && !video.disablePictureInPicture) ||
(video.webkitSupportsPresentationMode && Util.typeOf(video.webkitSetPresentationMode) === 'Function')) ||