Last active
August 29, 2015 14:24
-
-
Save elwinschmitz/0a47e358c640296ce1a9 to your computer and use it in GitHub Desktop.
Bookmarklet: ⇄ Toggle ENV
This file contains hidden or 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
(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