Skip to content

Instantly share code, notes, and snippets.

@ojas
Created September 19, 2016 16:43
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 ojas/cd55e55d3326533a7408103efb414230 to your computer and use it in GitHub Desktop.
Save ojas/cd55e55d3326533a7408103efb414230 to your computer and use it in GitHub Desktop.
Hacks
// run this in your console…
(function(){
var nc = (new Date()).valueOf();
jQuery('style').each(function() {
var c = this.innerHTML;
if (c.indexOf('@import')!==-1)
this.innerHTML = c.replace('.css?', '.css?' + nc );
});
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment