[지라이슈없음] vod 일시정지 후 영상 재진입 시 프로그레스바가 사라지던 현상 수정
This commit is contained in:
@@ -1406,12 +1406,17 @@ const PlayerPanel = ({
|
||||
panelInfo.modalContainerId
|
||||
);
|
||||
}
|
||||
} else if (
|
||||
isOnTop &&
|
||||
!panelInfo.modal &&
|
||||
videoPlayer.current?.getMediaState()?.paused
|
||||
) {
|
||||
videoPlayer.current.play();
|
||||
} else if (isOnTop && !panelInfo.modal && videoPlayer.current) {
|
||||
if (videoPlayer.current?.getMediaState()?.paused) {
|
||||
videoPlayer.current.play();
|
||||
}
|
||||
|
||||
if (
|
||||
videoPlayer.current.areControlsVisible &&
|
||||
!videoPlayer.current.areControlsVisible()
|
||||
) {
|
||||
videoPlayer.current.showControls();
|
||||
}
|
||||
}
|
||||
}, [panelInfo, isOnTop]);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user