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
I noticed when using videojs and another tool to allow the video quality switching the label and selected does not pass
Code changes starting from line 335
var html5VideoMarkup = ''; for (var i = 0; i < html5Video.source.length; i++) { var type = html5Video.source[i].type; var label = html5Video.source[i].label; var selected = html5Video.source[i].selected; var attr = type ? "type=\"" + type + "\" " : ''; attr += label ? "label=\"" + label + "\" " : ''; attr += selected ? "selected=\"true\"" : ''; html5VideoMarkup += "<source src=\"" + html5Video.source[i].src + "\" " + attr + ">";
Adding the label allows the other tools to grab that information and display properly Adding selected allows the default selected
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Summary
I noticed when using videojs and another tool to allow the video quality switching the label and selected does not pass
Basic example
Code changes starting from line 335
Motivation
Adding the label allows the other tools to grab that information and display properly
Adding selected allows the default selected
The text was updated successfully, but these errors were encountered: