Prevent default event handling when clicking on the video position slider
This prevents accidental text selection and avoids opening the toot containing the video in the dynamic column when clicking on the position slider.lolsob-rspec
parent
5e1e9753c3
commit
2f73a9358e
|
@ -160,6 +160,9 @@ export default class Video extends React.PureComponent {
|
||||||
this.setState({ dragging: true });
|
this.setState({ dragging: true });
|
||||||
this.video.pause();
|
this.video.pause();
|
||||||
this.handleMouseMove(e);
|
this.handleMouseMove(e);
|
||||||
|
|
||||||
|
e.preventDefault();
|
||||||
|
e.stopPropagation();
|
||||||
}
|
}
|
||||||
|
|
||||||
handleMouseUp = () => {
|
handleMouseUp = () => {
|
||||||
|
|
Loading…
Reference in New Issue