You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
mounted() {
const videoWrapper = document.getElementsByClassName("plyr__video-wrapper")[0];
videoWrapper.addEventListener("click", event => {
this.$refs.plyr.player.togglePlay();
event.stopPropagation(); // Necessary or the video will toggle twice => no playback
});
},
Once a user clicks the large play icon - they cannot pause the video by re-clicking the video like they can on desktop.
The text was updated successfully, but these errors were encountered: