Created
February 21, 2018 13:09
-
-
Save IbrahimTanyalcin/67ae0c30f793ae5923ba44831a48c537 to your computer and use it in GitHub Desktop.
taskq_loadStyles.js
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
!function(){ | |
function loadStyles(){ | |
var link = document.createElement("link"); | |
link.href = "./styles.css"; | |
link.type = "text/css"; | |
link.rel = "stylesheet"; | |
document.head.appendChild(link); | |
}; | |
taskq.push(loadStyles); | |
}(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment