Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 21st, 2012  |  syntax: None  |  size: 0.31 KB  |  hits: 23  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. // Hamazon.com : We sell books!
  2.  
  3. MyApp.Router = Backbone.Router.extend({
  4.     routes: {
  5.         ""             : "showBookstoreHomepage",
  6.         "search"       : "searchBooks",
  7.         "view/:bookId" : "viewBookDetail",
  8.         "cart"         : "showShoppingCart",
  9.         "account"      : "showMyAccount"
  10.     },
  11. });