[Glitch] Stop gifv timeline preview explicitly when open the media gallery

Port cf3c0fc38c to glitch-soc
remotes/1698178055505214576/signup-info-prompt
Thibaut Girka 2019-01-10 20:25:12 +01:00
parent 147f4f9fd2
commit e03813cf0a
1 changed files with 4 additions and 0 deletions

View File

@ -71,6 +71,10 @@ class Item extends React.PureComponent {
const { index, onClick } = this.props;
if (e.button === 0 && !(e.ctrlKey || e.metaKey)) {
if (this.hoverToPlay()) {
e.target.pause();
e.target.currentTime = 0;
}
e.preventDefault();
onClick(index);
}