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

Update media.js and html5.js feature access.

Due to #1415, various usage of features moved around. This makes sure
that features are now called directly on the tech everywhere.
This commit is contained in:
Gary Katsevman
2014-09-02 14:51:13 -04:00
parent 7caa2fc1a7
commit e60f2eef5c
2 changed files with 4 additions and 4 deletions

View File

@ -25,7 +25,7 @@ vjs.Html5 = vjs.MediaTechController.extend({
this['fullscreenResizeFeature'] = true;
// HTML video supports progress events
this.features['progressEvents'] = true;
this['progressEventsFeature'] = true;
vjs.MediaTechController.call(this, player, options, ready);
this.setupTriggers();