Created
August 20, 2012 12:25
-
-
Save ambar/3403673 to your computer and use it in GitHub Desktop.
coffeescript chain
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
chain = (o, fn) -> () -> fn.call o | |
$body = $ document.body | |
do chain $body, -> | |
@css 'background','sienna' | |
@addClass 'sienna' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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