mirror of
https://github.com/videojs/video.js.git
synced 2025-07-03 00:57:02 +02:00
Don't dynamically turn off progress events
The major browsers that support HTML video now reliably support progress events, so don't worry about synthesizing them for HTML anymore.
This commit is contained in:
committed by
Steve Heffernan
parent
f4ce62d4b1
commit
f037818656
@ -24,6 +24,9 @@ vjs.Html5 = vjs.MediaTechController.extend({
|
||||
// HTML video is able to automatically resize when going to fullscreen
|
||||
this.features['fullscreenResize'] = true;
|
||||
|
||||
// HTML video supports progress events
|
||||
this.features['progressEvents'] = true;
|
||||
|
||||
vjs.MediaTechController.call(this, player, options, ready);
|
||||
this.setupTriggers();
|
||||
|
||||
|
Reference in New Issue
Block a user