Skip to content

Instantly share code, notes, and snippets.

@munr
Last active December 14, 2015 16:49
Show Gist options
  • Save munr/5117883 to your computer and use it in GitHub Desktop.
Save munr/5117883 to your computer and use it in GitHub Desktop.
Javascript code for bookmarklet to easily add or remove the umbDebugShowTrace querystring used by Umbraco
javascript:var l=window.location.toString();if(l.indexOf("umbDebugShowTrace=true")>=0){window.location=l.replace(/\?umbDebugShowTrace=true/ig,"")}else{window.location=l+"?umbDebugShowTrace=true";}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment