mirror of
https://github.com/videojs/video.js.git
synced 2024-11-26 08:51:09 +02:00
Remove listenToTouchMove.
This commit is contained in:
parent
26c8d3f92c
commit
e5294848f9
@ -24,8 +24,6 @@ vjs.ControlBar.prototype.options_ = {
|
||||
}
|
||||
};
|
||||
|
||||
vjs.ControlBar.prototype.listenToTouchMove = true;
|
||||
|
||||
vjs.ControlBar.prototype.createEl = function(){
|
||||
return vjs.createEl('div', {
|
||||
className: 'vjs-control-bar'
|
||||
|
@ -19,8 +19,6 @@ vjs.ProgressControl.prototype.options_ = {
|
||||
}
|
||||
};
|
||||
|
||||
vjs.ProgressControl.prototype.listenToTouchMove = true;
|
||||
|
||||
vjs.ProgressControl.prototype.createEl = function(){
|
||||
return vjs.Component.prototype.createEl.call(this, 'div', {
|
||||
className: 'vjs-progress-control vjs-control'
|
||||
|
@ -50,8 +50,6 @@ vjs.Slider.prototype.createEl = function(type, props) {
|
||||
return vjs.Component.prototype.createEl.call(this, type, props);
|
||||
};
|
||||
|
||||
vjs.Slider.prototype.listenToTouchMove = true;
|
||||
|
||||
vjs.Slider.prototype.onMouseDown = function(event){
|
||||
event.preventDefault();
|
||||
vjs.blockTextSelection();
|
||||
@ -232,5 +230,3 @@ vjs.SliderHandle.prototype.createEl = function(type, props) {
|
||||
|
||||
return vjs.Component.prototype.createEl.call(this, 'div', props);
|
||||
};
|
||||
|
||||
vjs.SliderHandle.prototype.listenToTouchMove = true;
|
||||
|
Loading…
Reference in New Issue
Block a user