Skip to content

Instantly share code, notes, and snippets.

@carlosrberto
Created February 17, 2012 15:31
Show Gist options
  • Save carlosrberto/1854035 to your computer and use it in GitHub Desktop.
Save carlosrberto/1854035 to your computer and use it in GitHub Desktop.
Backbone Routers
var Workspace = Backbone.Router.extend({
routes: {
"help": "help", // #help
"search/:query": "search", // #search/kiwis
"search/:query/p:page": "search" // #search/kiwis/p7
},
help: function() {
...
},
search: function(query, page) {
...
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment