Skip to content

Instantly share code, notes, and snippets.

@elwinschmitz
Last active August 29, 2015 14:24
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 elwinschmitz/0a47e358c640296ce1a9 to your computer and use it in GitHub Desktop.
Save elwinschmitz/0a47e358c640296ce1a9 to your computer and use it in GitHub Desktop.
Bookmarklet: ⇄ Toggle ENV
(function(){
var ENV='.env';
if(location.href.search(ENV)>=0){
location.href=location.href.replace(ENV,'');
}else{
location.href=location.origin+ENV+location.pathname+location.search+location.hash;
}
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment