You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now, this breaks when used in strict mode because in createElement it tries to set localName back to the tagName but setting localName on the element isn't allowed in strict mode. Loose mode lets it slide, though.
Making a change to video.js to disable strict mode for now (videojs/video.js#4551) but it should be fixed here ultimately.
The text was updated successfully, but these errors were encountered:
We had to turn off strict mode (#4551) in Video.js due to a change in vtt.js. That has now been fixed in videojs/vtt.js#40 and released as part of 0.15.2 which will be available via #6333.
Fixesvideojs/vtt.js#15
Right now, this breaks when used in strict mode because in
createElement
it tries to setlocalName
back to thetagName
but settinglocalName
on the element isn't allowed in strict mode. Loose mode lets it slide, though.Making a change to video.js to disable strict mode for now (videojs/video.js#4551) but it should be fixed here ultimately.
The text was updated successfully, but these errors were encountered: