Skip to content

Instantly share code, notes, and snippets.

@basarat
Created February 19, 2017 23:01
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 basarat/fc0a701e8b634297ba52a42c19388f19 to your computer and use it in GitHub Desktop.
Save basarat/fc0a701e8b634297ba52a42c19388f19 to your computer and use it in GitHub Desktop.
let listener = ()=>null
// Don't want to execute this line again
window.addEventListener("hashchange",()=>{
listener();
});
// You can call this as many times as you want
export const onHashChange(_listener){
listener = _listener;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment