Fix bubbling events when the video player is focused

This commit is contained in:
PrestonN 2019-07-07 11:49:50 -04:00
parent 3e2dcb27e9
commit ca364dcaf9
1 changed files with 3 additions and 0 deletions

View File

@ -99,6 +99,9 @@ let videoShortcutHandler = function (event) {
case 32:
// Space Bar
event.preventDefault();
if ($('.videoPlayer').is(':focus')) {
return;
}
if (videoPlayer.paused) {
videoPlayer.play();
if($('.videoPlayer').is(':hover')) {