Last active
April 2, 2018 14:18
-
-
Save aseredenko/82019622f76f476ad945a83e285a43e9 to your computer and use it in GitHub Desktop.
This file contains 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
<noscript id="deferred-styles"> | |
<link rel="stylesheet" type="text/css" href="small.css"/> | |
</noscript> | |
<script> | |
var loadDeferredStyles = function() { | |
var addStylesNode = document.getElementById("deferred-styles"); | |
var replacement = document.createElement("div"); | |
replacement.innerHTML = addStylesNode.textContent; | |
document.body.appendChild(replacement); | |
addStylesNode.parentElement.removeChild(addStylesNode); | |
}; | |
var raf = window.requestAnimationFrame || window.mozRequestAnimationFrame || | |
window.webkitRequestAnimationFrame || window.msRequestAnimationFrame; | |
if (raf) raf(function() { window.setTimeout(loadDeferredStyles, 0); }); | |
else window.addEventListener('load', loadDeferredStyles); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment