Skip to content

Instantly share code, notes, and snippets.

@aurbano
Created April 18, 2015 11:05
Show Gist options
  • Save aurbano/59a7ed66078d95fcaa9f to your computer and use it in GitHub Desktop.
Save aurbano/59a7ed66078d95fcaa9f to your computer and use it in GitHub Desktop.
Add the hash to the url
// Check if url includes #/
if(window.location.hash.length < 1 || window.location.hash == ''){
window.location = window.location.origin + window.location.pathname + '#/' + window.location.search;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment