Skip to content

Instantly share code, notes, and snippets.

@sochoa
Created October 6, 2012 21:06
Show Gist options
  • Save sochoa/3846128 to your computer and use it in GitHub Desktop.
Save sochoa/3846128 to your computer and use it in GitHub Desktop.
Backbone.js > Invalid URL Redirect
if (/^\/.+/.test(window.location.pathname)) {
if (!/^(\/#)/.test(window.location.pathname)) {
console.error("Invalid URL: " + window.location);
window.location = '/#' + window.location.pathname;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment