mirror of
https://gitea.invidious.io/iv-org/videojs-quality-selector.git
synced 2024-08-15 00:43:13 +00:00
Merge pull request #1 from iv-org/hide-quality-option
This commit is contained in:
commit
33e026eb51
1 changed files with 4 additions and 0 deletions
|
@ -76,6 +76,10 @@ module.exports = function(videojs) {
|
|||
createItems: function() {
|
||||
var player = this.player(),
|
||||
sources = player.currentSources();
|
||||
|
||||
sources = sources.filter(function(element) {
|
||||
return element.hidequalityoption == undefined;
|
||||
});
|
||||
|
||||
return _.map(sources, function(source) {
|
||||
return new QualityOption(player, {
|
||||
|
|
Loading…
Reference in a new issue