Skip to content

Instantly share code, notes, and snippets.

@ambar
Created August 20, 2012 12:25
Show Gist options
  • Save ambar/3403673 to your computer and use it in GitHub Desktop.
Save ambar/3403673 to your computer and use it in GitHub Desktop.
coffeescript chain
chain = (o, fn) -> () -> fn.call o
$body = $ document.body
do chain $body, ->
@css 'background','sienna'
@addClass 'sienna'
chain = (fn) -> (o) -> fn.call o
$body = $ document.body
(chain ->
@css 'background','sienna'
@addClass 'sienna'
)($body)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment