mirror of
https://github.com/kmoskwiak/videojs-resolution-switcher.git
synced 2025-10-03 09:49:21 +02:00
#63 Plugin doesn't work with IE 9 issue
This commit is contained in:
parent
781ca81d18
commit
e22c3aa043
1 changed files with 2 additions and 2 deletions
|
@ -42,7 +42,7 @@
|
||||||
var selection = this.player_.currentResolution();
|
var selection = this.player_.currentResolution();
|
||||||
this.selected(this.options_.label === selection.label);
|
this.selected(this.options_.label === selection.label);
|
||||||
};
|
};
|
||||||
MenuItem.registerComponent('ResolutionMenuItem', ResolutionMenuItem);
|
videojs.registerComponent('ResolutionMenuItem', ResolutionMenuItem);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Resolution menu button
|
* Resolution menu button
|
||||||
|
@ -97,7 +97,7 @@
|
||||||
ResolutionMenuButton.prototype.buildCSSClass = function(){
|
ResolutionMenuButton.prototype.buildCSSClass = function(){
|
||||||
return MenuButton.prototype.buildCSSClass.call( this ) + ' vjs-resolution-button';
|
return MenuButton.prototype.buildCSSClass.call( this ) + ' vjs-resolution-button';
|
||||||
};
|
};
|
||||||
MenuButton.registerComponent('ResolutionMenuButton', ResolutionMenuButton);
|
videojs.registerComponent('ResolutionMenuButton', ResolutionMenuButton);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Initialize the plugin.
|
* Initialize the plugin.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue