Skip to content

Instantly share code, notes, and snippets.

@vitormil
Forked from codeschool-courses/router.js
Created April 13, 2012 03:07
Show Gist options
  • Save vitormil/2373287 to your computer and use it in GitHub Desktop.
Save vitormil/2373287 to your computer and use it in GitHub Desktop.
Challenge 7-4
var AppRouter = Backbone.Router.extend({
routes: {
"appointments/:id": "show"
},
show: function(id){
console.log("heyo we're in show with id %d", id);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment