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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
At 3, there are no controls
At 3, there should be iOS native controls for the video
html5.js has
// Update specific tag settings, in case they were overridden var attrs = ['autoplay','preload','loop','muted'];
The 'controls' is not present, presumably because often times we dont want a controls attr in the video tag. I suggest a fix of:
if (player.options_.controls && player.options_['customControlsOnMobile'] !== true && (vjs.IS_IOS || vjs.IS_ANDROID)) { attrs.push('controls'); }
The text was updated successfully, but these errors were encountered:
Control bar overhaul to fix multiple issues. videojs#556, videojs#500, …
ccabf60
…videojs#374, videojs#281, videojs#403, videojs#561, videojs#441, videojs#193
Control bar updates to fix videojs#561 and fix videojs#281
5de13b6
02de927
No branches or pull requests
To recreate
Observed
At 3, there are no controls
Expected
At 3, there should be iOS native controls for the video
Fix
html5.js has
The 'controls' is not present, presumably because often times we dont want a controls attr in the video tag. I suggest a fix of:
The text was updated successfully, but these errors were encountered: