1
0
mirror of https://github.com/videojs/video.js.git synced 2025-03-03 15:12:49 +02:00

Fixed a bug where play event was no longer being triggered.

This commit is contained in:
Steve Heffernan 2013-04-08 18:53:19 -07:00
parent dbd02fb05a
commit 896d0333c7

View File

@ -97,9 +97,6 @@ vjs.Html5.prototype.setupTriggers = function(){
// Triggers removed using this.off when disposed
vjs.Html5.prototype.eventHandler = function(e){
// We'll be triggring play ourselves, thank you.
if (e.type === 'play') return;
this.trigger(e);
// No need for media events to bubble up.