This commit is contained in:
Jaroslav Polakovič 2022-01-31 14:36:40 +01:00
Родитель 599d9ab4c4
Коммит ff908c3f62
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -464,7 +464,7 @@ export default class VideoPlayer extends HTMLElement {
pipButton.disabled = true;
try {
if (this !== document.pictureInPictureElement) {
// If another video is already in PiP, pause it and exit PiP mode.
// If another video is already in PiP, pause it.
if (document.pictureInPictureElement instanceof VideoPlayer) {
document.pictureInPictureElement.videoElement.pause();
}