We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d1dfb6 commit c855152Copy full SHA for c855152
src/containers/audio-trimmer.jsx
@@ -42,11 +42,15 @@ class AudioTrimmer extends React.Component {
42
this.containerSize = this.containerElement.getBoundingClientRect().width;
43
this.trimStartDragRecognizer.start(e);
44
this.initialTrim = this.props.trimStart;
45
+ e.stopPropagation();
46
+ e.preventDefault();
47
}
48
handleTrimEndMouseDown (e) {
49
50
this.trimEndDragRecognizer.start(e);
51
this.initialTrim = this.props.trimEnd;
52
53
54
55
storeRef (el) {
56
this.containerElement = el;
0 commit comments