Skip to content

Instantly share code, notes, and snippets.

@IbrahimTanyalcin
Created February 21, 2018 13:09
Show Gist options
  • Save IbrahimTanyalcin/67ae0c30f793ae5923ba44831a48c537 to your computer and use it in GitHub Desktop.
Save IbrahimTanyalcin/67ae0c30f793ae5923ba44831a48c537 to your computer and use it in GitHub Desktop.
taskq_loadStyles.js
!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