Created
July 23, 2011 13:55
-
-
Save jeremyBanks/1101456 to your computer and use it in GitHub Desktop.
This file contains 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
print "Hello" | |
$.ajax(url: "/blah").then -> | |
print "Got data!" | |
$.ajax(url: "/bar").then -> | |
print "Got More!" | |
$.ajax(url: "/foo").then -> | |
print "Even more!" |
This file contains 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
print "Hello" | |
$.ajax(url: "/blah").then(-> | |
print "Got data!" | |
$.ajax(url: "/bar").then(-> | |
print "Got More!" | |
$.ajax(url: "/foo").then(-> | |
print "Even more!" | |
))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment