Skip to content

Instantly share code, notes, and snippets.

@unamashana
Created December 11, 2013 09:00
Show Gist options
  • Save unamashana/7907141 to your computer and use it in GitHub Desktop.
Save unamashana/7907141 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() {
...
},
search: function(query, page) {
...
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment