Skip to content

Instantly share code, notes, and snippets.

@dwightwatson
Created January 19, 2015 03:46
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 dwightwatson/d6861a4457999b32ce74 to your computer and use it in GitHub Desktop.
Save dwightwatson/d6861a4457999b32ce74 to your computer and use it in GitHub Desktop.
Toggle Homestead Bookmarklet
javascript:(function() {
var host = window.location.hostname.substring(0, window.location.hostname.indexOf('.'));
var newHost = window.location.port == "8000" ? host + '.com' : host + '.app:8000';
window.location.href = 'http://' + newHost + window.location.pathname;
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment