-
-
Save fearphage/450255 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // this is how I fixed IE crashing on | |
| // dynamic injections of AtRules inside | |
| // stylesheets (for example @font-face) | |
| function setStyle(rules) { | |
| var d = document, | |
| s = d.createElement('style'), | |
| h = d.getElementsByTagName('head')[0] || d.documentElement; | |
| s.type = 'text/css'; | |
| d.createElement('div').appendChild(s).styleSheet.cssText = rules; | |
| h.insertBefore(s, h.firstChild); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment