Skip to content

Instantly share code, notes, and snippets.

@kyktommy
Created May 1, 2013 07:02
Show Gist options
  • Save kyktommy/5494100 to your computer and use it in GitHub Desktop.
Save kyktommy/5494100 to your computer and use it in GitHub Desktop.
var routingTable = {
'/': function() {
redirect_to('products#index')
},
'/products': function() {
action("products#index");
},
'/products/:id': function(id) {
action("products#show", id);
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment