Fix video not taking focus on interaction

Revert part of #737 to restore hotkey functionality
master
Thibaut Girka 3 years ago
parent 15be0bde8a
commit 3281c9b4c0
  1. 7
      app/javascript/flavours/glitch/features/video/index.js

@ -182,10 +182,7 @@ class Video extends React.PureComponent {
this.volume = c;
}
handleMouseDownRoot = e => {
e.preventDefault();
e.stopPropagation();
}
handleClickRoot = e => e.stopPropagation();
handlePlay = () => {
this.setState({ paused: false });
@ -578,7 +575,7 @@ class Video extends React.PureComponent {
ref={this.setPlayerRef}
onMouseEnter={this.handleMouseEnter}
onMouseLeave={this.handleMouseLeave}
onMouseDown={this.handleMouseDownRoot}
onClick={this.handleClickRoot}
onKeyDown={this.handleKeyDown}
tabIndex={0}
>

Loading…
Cancel
Save