Created
May 9, 2014 10:16
-
-
Save mattosborn/1235e11f897e3cf6fa58 to your computer and use it in GitHub Desktop.
gu/global.css bookmarklet
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript:(function(){ | |
function reloadCss(url){ | |
$("link[href='"+url+"']").remove(); | |
$('head').append('<link rel="stylesheet" type="text/css" href="'+url+'">'); | |
} | |
reloadCss('/assets/stylesheets/global.css'); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment