Skip to content
Snippets Groups Projects
Commit f07caa2b authored by Jon's avatar Jon Committed by Steve Heffernan
Browse files

Close GH-720: unmute if the user drags the volume bar slider.

parent 2662ad9c
Branches
Tags
No related merge requests found
......@@ -76,6 +76,10 @@ vjs.VolumeBar.prototype.createEl = function(){
};
vjs.VolumeBar.prototype.onMouseMove = function(event) {
if (this.player_.muted()) {
this.player_.muted(false);
}
this.player_.volume(this.calculateDistance(event));
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment