We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The new check for setSource method fails on minified js, because setSource is not exported. In player.js :
if (window['videojs'][this.techName].prototype.hasOwnProperty('setSource')) { this.techCall('setSource', source); } else { this.techCall('src', source.src); }
The new method will never be called when using the minified version. I've tried adding the property to exports.js and it does resolve the issue.
The text was updated successfully, but these errors were encountered:
Oh man...GCC strikes again. Thanks for figuring this out. Want to submit a pull request for the updates?
Sorry, something went wrong.
Added a line to the changelog for #1753
45b3601
This has been fixed by #1754 and released in v4.11.3. e2c5462
No branches or pull requests
The new check for setSource method fails on minified js, because setSource is not exported.
In player.js :
The new method will never be called when using the minified version.
I've tried adding the property to exports.js and it does resolve the issue.
The text was updated successfully, but these errors were encountered: