Guest User

Untitled

a guest
Jan 22nd, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. // What it does:
  2. (function() {
  3. var loc = document.location;
  4. if (loc.search.indexOf('umbDebugShowTrace') == -1) {
  5. document.location += (loc.search.indexOf('?') == 0 ? '&' : '?') + 'umbDebugShowTrace=True';
  6. } else {
  7. document.location = loc.pathname + loc.search.replace(/[?&]umbDebugShowTrace=True/i,'');
  8. }
  9. })()
  10.  
  11. // Minified for Copying to Bookmark URL:
  12. javascript:(function(){var%20loc=document.location;if(loc.search.indexOf('umbDebugShowTrace')==-1){document.location+=(loc.search.indexOf('?')==0?'&':'?')+'umbDebugShowTrace=True';}else{document.location=loc.pathname+loc.search.replace(/[?&]umbDebugShowTrace=True/i,'');}})()
Add Comment
Please, Sign In to add comment