1
0
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:
David LaPalomento
2014-08-14 16:03:50 -04:00
committed by Steve Heffernan
parent f4ce62d4b1
commit f037818656
3 changed files with 4 additions and 39 deletions

View File

@ -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();