Skip to content

Instantly share code, notes, and snippets.

@verekia
Created January 20, 2016 19:49
Show Gist options
  • Save verekia/a36c910d1aed0823434d to your computer and use it in GitHub Desktop.
Save verekia/a36c910d1aed0823434d to your computer and use it in GitHub Desktop.
function hashCheck(){
if (window.location.hash != currentHash){
for (var i = 0, currentRoute; currentRoute = routes[i++];){
if (window.location.hash == currentRoute.hash)
loadController(currentRoute.controller);
}
currentHash = window.location.hash;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment