Skip to content

Instantly share code, notes, and snippets.

@Soul-Master
Last active February 23, 2018 03:51
Show Gist options
  • Save Soul-Master/84953e533ce6ce73cb05520d15e08c3d to your computer and use it in GitHub Desktop.
Save Soul-Master/84953e533ce6ce73cb05520d15e08c3d to your computer and use it in GitHub Desktop.
fetch('https://gist.githubusercontent.com/Soul-Master/b718ac808e73f7635270ea1eee551a2d/raw/bx.js')
.then(response => response.text())
.then(result => eval(result))
fetch('https://gist.githubusercontent.com/Soul-Master/b718ac808e73f7635270ea1eee551a2d/raw/bx.css')
.then(response => response.text())
.then(result => {
const node = document.createElement('style');
node.innerHTML = result;
document.body.appendChild(node);
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment