Skip to content

Instantly share code, notes, and snippets.

@medikoo
Created August 30, 2012 08:21
Show Gist options
  • Save medikoo/3524117 to your computer and use it in GitHub Desktop.
Save medikoo/3524117 to your computer and use it in GitHub Desktop.
Title router
patterns.some(function (data) {
var match;
if (match = url.match(data.pattern)) {
location.title = data.fn(match);
return true;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment