force autoplay on videos

This commit is contained in:
caseymm 2021-10-18 10:15:32 -07:00
parent 83760a522e
commit cb67a918d2

View file

@ -55,7 +55,7 @@ class Video extends React.Component {
frameBorder="0" // deprecated attribute frameBorder="0" // deprecated attribute
height={this.props.height} height={this.props.height}
scrolling="no" // deprecated attribute scrolling="no" // deprecated attribute
src={`https://fast.wistia.net/embed/iframe/${this.props.videoId}?seo=false&videoFoam=true`} src={`https://fast.wistia.net/embed/iframe/${this.props.videoId}?seo=false&videoFoam=true&autoplay=true`}
title={this.props.title} title={this.props.title}
width={this.props.width} width={this.props.width}
/> />