1
0
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:
Gary Katsevman 2014-02-05 20:50:39 -05:00
parent 26c8d3f92c
commit e5294848f9
3 changed files with 0 additions and 8 deletions

View File

@ -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'

View File

@ -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'

View File

@ -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;