diff options
author | Thibaut Girka <thib@sitedethib.com> | 2018-09-17 14:19:35 +0200 |
---|---|---|
committer | ThibG <thib@sitedethib.com> | 2018-09-21 12:56:13 +0200 |
commit | 925c185ef9cfba24cdeb7c3555b7f75c55738cab (patch) | |
tree | e96533bf74e21191df3224fe03d1a235f4bd46a4 /app/javascript/flavours/glitch/features/video | |
parent | 5c9a2f5d77387792c6953a205de06cbe3bcbcac0 (diff) |
Prevent clicks on video from initiating selections
Diffstat (limited to 'app/javascript/flavours/glitch/features/video')
-rw-r--r-- | app/javascript/flavours/glitch/features/video/index.js | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/app/javascript/flavours/glitch/features/video/index.js b/app/javascript/flavours/glitch/features/video/index.js index 65e10e0cf..5cbe01f26 100644 --- a/app/javascript/flavours/glitch/features/video/index.js +++ b/app/javascript/flavours/glitch/features/video/index.js @@ -135,7 +135,10 @@ export default class Video extends React.PureComponent { this.seek = c; } - handleClickRoot = e => e.stopPropagation(); + handleMouseDownRoot = e => { + e.preventDefault(); + e.stopPropagation(); + } handlePlay = () => { this.setState({ paused: false }); @@ -319,7 +322,7 @@ export default class Video extends React.PureComponent { ref={this.setPlayerRef} onMouseEnter={this.handleMouseEnter} onMouseLeave={this.handleMouseLeave} - onClick={this.handleClickRoot} + onMouseDown={this.handleMouseDownRoot} tabIndex={0} > <video |