diff --git a/src/js/media/media.js b/src/js/media/media.js index 0ea37cbea9..59845cab6a 100644 --- a/src/js/media/media.js +++ b/src/js/media/media.js @@ -87,8 +87,6 @@ vjs.MediaTechController.prototype.addControlsListeners = function(){ // so we'll check if the controls were already showing before reporting user // activity this.on('touchstart', function(event) { - // Stop the mouse events from also happening - event.preventDefault(); userWasActive = this.player_.userActive(); }); @@ -97,6 +95,11 @@ vjs.MediaTechController.prototype.addControlsListeners = function(){ this.player().reportUserActivity(); } }); + + this.on('touchend', function(event) { + // Stop the mouse events from also happening + event.preventDefault(); + }); // Turn on component tap events this.emitTapEvents();