mirror of
https://github.com/bytedance/xgplayer.git
synced 2025-04-05 03:05:02 +08:00
fix(xgplayer): pip available
This commit is contained in:
parent
b431c9ec35
commit
347ef3c5fe
@ -293,9 +293,7 @@ function init(index = 0, config = {}) {
|
||||
}
|
||||
},
|
||||
url: "./heatmap.mp4",
|
||||
DynamicBg: {
|
||||
disable: false
|
||||
},
|
||||
pip: true,
|
||||
loop: false,
|
||||
autoplay: false,
|
||||
autoplayMuted: true,
|
||||
|
@ -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')) ||
|
||||
|
Loading…
x
Reference in New Issue
Block a user