mirror of
https://github.com/videojs/video.js.git
synced 2024-12-14 11:23:30 +02:00
Add vjs-scrubbing class to player while scrubbing
This commit is contained in:
parent
9c1e410660
commit
24dff158fa
@ -75,6 +75,7 @@ vjs.SeekBar.prototype.onMouseDown = function(event){
|
||||
vjs.Slider.prototype.onMouseDown.call(this, event);
|
||||
|
||||
this.player_.scrubbing = true;
|
||||
this.player_.addClass('vjs-scrubbing');
|
||||
|
||||
this.videoWasPlaying = !this.player_.paused();
|
||||
this.player_.pause();
|
||||
@ -94,6 +95,7 @@ vjs.SeekBar.prototype.onMouseUp = function(event){
|
||||
vjs.Slider.prototype.onMouseUp.call(this, event);
|
||||
|
||||
this.player_.scrubbing = false;
|
||||
this.player_.removeClass('vjs-scrubbing');
|
||||
if (this.videoWasPlaying) {
|
||||
this.player_.play();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user