Fix video player width not being updated to fit container width

master
Thibaut Girka 5 years ago committed by ThibG
parent 1aa87a1967
commit d974988541
  1. 1
      app/javascript/flavours/glitch/features/video/index.js

@ -366,7 +366,6 @@ export default class Video extends React.PureComponent {
width = containerWidth;
height = containerWidth / (16/9);
playerStyle.width = width;
playerStyle.height = height;
} else if (inline) {
return (<div className={computedClass} ref={this.setPlayerRef} tabindex={0}></div>);

Loading…
Cancel
Save