Skip to content

Instantly share code, notes, and snippets.

@sumitngupta
Created October 17, 2011 19:41
Show Gist options
  • Save sumitngupta/1293561 to your computer and use it in GitHub Desktop.
Save sumitngupta/1293561 to your computer and use it in GitHub Desktop.
ThresholdBackbone.Routers.Projects = Backbone.Router.extend({
routes: {
'' : 'index',
':id' : 'show'
},
index: function() {
console.log("Index View!");
},
show: function() {
console.log("Show View!");
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment