frontend/.pnpm-store/v3/files/ae/77892fcd76264bdae8d0fefa5551170bf4623bd9da388370386acaedca83b192906c2d6799e5f752e870a588b412aec775aac48f9c471273ffd63a75ef95df

13 lines
376 B
Plaintext

// IE8 compat mode aka Fake IE7
// by Erich Ocean
// In this case, IE8 will be acting as IE7. You may choose to remove features in this case.
// related:
// james.padolsey.com/javascript/detect-ie-in-js-using-conditional-comments/
Modernizr.addTest('ie8compat',function(){
return (!window.addEventListener && document.documentMode && document.documentMode === 7);
});