Update src/bower_components/emby-webcomponents/htmlvideoplayer/plugin.js

Co-Authored-By: anthonylavado <anthonylavado@users.noreply.github.com>
This commit is contained in:
Claus Vium 2019-02-04 03:56:41 -05:00 committed by GitHub
parent c99f9c6d65
commit 8ec57de307
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1443,7 +1443,7 @@ define(['browser', 'require', 'events', 'apphost', 'loading', 'dom', 'playbackMa
var list = []; var list = [];
var video = document.createElement('video'); var video = document.createElement('video');
if ((video.webkitSupportsPresentationMode && typeof video.webkitSetPresentationMode === "function") || (document.pictureInPictureEnabled)) { if (video.webkitSupportsPresentationMode && typeof video.webkitSetPresentationMode === "function" || document.pictureInPictureEnabled) {
list.push('PictureInPicture'); list.push('PictureInPicture');
} }