mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
Attempt at fixing inline video player
This commit is contained in:
parent
dfa5b0576f
commit
04bedd237b
@ -220,6 +220,11 @@ export default class Video extends React.PureComponent {
|
|||||||
}
|
}
|
||||||
|
|
||||||
componentDidUpdate (prevProps) {
|
componentDidUpdate (prevProps) {
|
||||||
|
if (this.player && this.player.offsetWidth && !this.state.fullscreen) {
|
||||||
|
this.setState({
|
||||||
|
containerWidth: this.player.offsetWidth,
|
||||||
|
});
|
||||||
|
}
|
||||||
if (this.video && this.state.revealed && this.props.preventPlayback && !prevProps.preventPlayback) {
|
if (this.video && this.state.revealed && this.props.preventPlayback && !prevProps.preventPlayback) {
|
||||||
this.video.pause();
|
this.video.pause();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user