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
Component's createEl is selectively adding attributes. So this:
this.el_ = videojs.Component.prototype.createEl('iframe', { id: this.id_, className: 'vjs-tech', scrolling: 'no', marginWidth: 0, marginHeight: 0, frameBorder: 0, webkitAllowFullScreen: 'true', mozallowfullscreen: 'true', allowFullScreen: 'true' });
Is not creating te last three attributes on the iframe. Following the code it comes down that in utils/dom.js createEl is using:
el[propName] = val;
instead of:
el.setAttribute(propName, val);
The text was updated successfully, but these errors were encountered:
We have a similar discussion around this happening in #2176, if you want to join in there and even help us get a fix created.
Sorry, something went wrong.
No branches or pull requests
Component's createEl is selectively adding attributes.
So this:
Is not creating te last three attributes on the iframe.
Following the code it comes down that in utils/dom.js createEl is using:
instead of:
The text was updated successfully, but these errors were encountered: