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
IE9 appends :80 to the host property of an anchor element and this causes the cross-domain request check in vjs.xhr to use an XDomainRequest instead of a vanilla XHR, which doesn't succeed. I put together a demo project that makes it easier to see the discrepancy.
The text was updated successfully, but these errors were encountered:
dmlap
added a commit
to dmlap/video.js
that referenced
this issue
Dec 22, 2014
IE9 appends the port number to the host property of anchor tags on http pages. Strip the port for http and https so that it behaves like everyone else.
IE9 appends
:80
to the host property of an anchor element and this causes the cross-domain request check invjs.xhr
to use an XDomainRequest instead of a vanilla XHR, which doesn't succeed. I put together a demo project that makes it easier to see the discrepancy.The text was updated successfully, but these errors were encountered: