Skip to content

Instantly share code, notes, and snippets.

@boxxxie
Created November 8, 2011 01:06
Show Gist options
  • Save boxxxie/1346724 to your computer and use it in GitHub Desktop.
Save boxxxie/1346724 to your computer and use it in GitHub Desktop.
var Workspace = Backbone.Router.extend(
{
routes: {
"help": "help", // #help
"search/:query": "search", // #search/kiwis
"search/:query/p:page": "search" // #search/kiwis/p7
},
help: function() {
console.log("help route");
},
search: function(query, page) {
console.log("search route");
}
});
Backbone.history.start();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment