mirror of https://github.com/ElemeFE/element
Slider:Prevent text selection on mouse drag
parent
1eaec019e3
commit
411ddf92cc
|
@ -96,6 +96,7 @@
|
||||||
|
|
||||||
onButtonDown(event) {
|
onButtonDown(event) {
|
||||||
if (this.disabled) return;
|
if (this.disabled) return;
|
||||||
|
event.preventDefault();
|
||||||
this.onDragStart(event);
|
this.onDragStart(event);
|
||||||
window.addEventListener('mousemove', this.onDragging);
|
window.addEventListener('mousemove', this.onDragging);
|
||||||
window.addEventListener('mouseup', this.onDragEnd);
|
window.addEventListener('mouseup', this.onDragEnd);
|
||||||
|
|
Loading…
Reference in New Issue