mirror of
https://github.com/videojs/video.js.git
synced 2024-12-27 02:43:45 +02:00
Make Volume Menu Button default to vertical.
This can be configured by giving the volumeMenuButton, an option like `{volumeBar: {vertical: false}}`. This can also be used to pass other options to the volumeBar.
This commit is contained in:
parent
b2539cb1ea
commit
89b6f42e99
2
src/js/controls.js
vendored
2
src/js/controls.js
vendored
@ -711,7 +711,7 @@ vjs.VolumeMenuButton.prototype.createMenu = function(){
|
||||
var menu = new vjs.Menu(this.player_, {
|
||||
contentElType: 'div'
|
||||
});
|
||||
var vc = new vjs.VolumeBar(this.player_);
|
||||
var vc = new vjs.VolumeBar(this.player_, vjs.obj.merge({vertical: true}, this.options_.volumeBar));
|
||||
menu.addChild(vc);
|
||||
return menu;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user