Skip to content

Instantly share code, notes, and snippets.

@patcullen
Created May 7, 2014 12:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save patcullen/90ff7dbcf34e2ce7a06a to your computer and use it in GitHub Desktop.
Save patcullen/90ff7dbcf34e2ce7a06a to your computer and use it in GitHub Desktop.
Inject CSS with Javascript
require(['injectCSS'], function(injectCSS) {
injectCSS(function(){/*
.case1 {
border: 3px solid #0f0;
}
*/});
injectCSS('.case2 { border: 3px solid #00f; } ');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment