Created
May 10, 2012 23:24
-
-
Save jacqui/2656532 to your computer and use it in GitHub Desktop.
switch current url to localhost:3000 (.nytimes.com version)
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
var url = window.location.href; | |
var matched = url.match(/http:\/\/(.*?)\//); | |
if (matched != null) { | |
var current_host = matched[1]; | |
var local_url = url.replace(current_host, 'localhost.nytimes.com:3000'); | |
window.location.href = local_url; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment