Skip to content

Instantly share code, notes, and snippets.

@bdarfler
Created May 23, 2018 11:26
Show Gist options
  • Save bdarfler/965ccc8cf76f23b01f6f71dabadd83b9 to your computer and use it in GitHub Desktop.
Save bdarfler/965ccc8cf76f23b01f6f71dabadd83b9 to your computer and use it in GitHub Desktop.
function addGlobalStyle(css) {
var head, style;
head = document.getElementsByTagName(‘head’)[0];
if (!head) { return; }
style = document.createElement(‘style’);
style.type = ‘text/css’;
style.innerHTML = css;
head.appendChild(style);
}
addGlobalStyle(‘.issueCard {page-break-after: always;}’);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment