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
{{ message }}
This repository has been archived by the owner on Apr 2, 2020. It is now read-only.
Edge isn't loading CSS fallbacks correctly. This is a bug which got introduced in v1.1.6.
In line 502 to 505, instead of:
// Needed for IE11 especially. `onload` is fired even when there's a 404 for `link` elements.if(type!=='js'&&!me.css.check(library)&&Object.hasOwnProperty.call(window,"ActiveXObject")&&!window.ActiveXObject){returnme.spawn.failed(payload);}
It should be:
if(type!=='js'&&!me.css.check(library)){varisIE=/*@cc_on!@*/false||!!document.documentMode;if(!isIE)returnme.spawn.failed(payload);// Needed for IE11 especially. `onload` is fired even when there's a 404 for `link` elements.elseif(Object.hasOwnProperty.call(window,"ActiveXObject")&&!window.ActiveXObject)returnme.spawn.failed(payload);}
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Edge isn't loading CSS fallbacks correctly. This is a bug which got introduced in v1.1.6.
In line 502 to 505, instead of:
It should be:
The text was updated successfully, but these errors were encountered: