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

Untitled

By: a guest on Aug 19th, 2012  |  syntax: None  |  size: 0.28 KB  |  hits: 11  |  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. class Client
  2.   constructor:()->
  3.     @router = new DelegateRouter(
  4.       delegate: this
  5.       routes:
  6.         "barf/:something": "barf"
  7.         "barfed/:one/:two": "barfed"
  8.         "": "index"
  9.         ":all": "all"
  10.     )
  11.  
  12.   barf: (something)->
  13.   barfed: (one, two)->
  14.   index: ()->