diff --git a/core/frontend/src/cards/js/video.js b/core/frontend/src/cards/js/video.js index 90a07f95e5..4c12c32d33 100644 --- a/core/frontend/src/cards/js/video.js +++ b/core/frontend/src/cards/js/video.js @@ -154,11 +154,13 @@ handleOnPlay(); }); - playIconContainer.addEventListener('click', () => { + playIconContainer.addEventListener('click', (event) => { + event.stopPropagation(); handleOnPlay(); }); - pauseIconContainer.addEventListener('click', () => { + pauseIconContainer.addEventListener('click', (event) => { + event.stopPropagation(); handleOnPause(); });