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
TextTrackList constructor: https://github.com/videojs/video.js/blob/master/src/js/tracks/text-track-list.js#L22
In bundled version constructor function is turning from function expression to named function expression: var TextTrackList = function TextTrackList(tracks)
And In minified version it's getting different name: n = function p(a) {
In IE8 p.prototype is not n.prototype, so IE8 hook does not work properly.
The text was updated successfully, but these errors were encountered:
TextTrackList constructor: https://github.com/videojs/video.js/blob/master/src/js/tracks/text-track-list.js#L22
In bundled version constructor function is turning from function expression to named function expression:
var TextTrackList = function TextTrackList(tracks)
And In minified version it's getting different name:
n = function p(a) {
In IE8 p.prototype is not n.prototype, so IE8 hook does not work properly.
The text was updated successfully, but these errors were encountered: