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
I had to create this fix so that IE9+ when using IE8- Document Mode will still run the script.
// If were not in standards mode, IE is too old / new or we can't create
// an XMLHttpRequest object then we should get out now.
if (doc.compatMode != 'CSS1Compat' || ieVersion<6 || ieVersion>8 || !xhr) {
if(document.documentMode > 8 || typeof document.documentMode === "undefined") {
return;
}
}
The text was updated successfully, but these errors were encountered:
I had to create this fix so that IE9+ when using IE8- Document Mode will still run the script.
The text was updated successfully, but these errors were encountered: