Created
May 12, 2014 20:17
-
-
Save zackbloom/1f6e14cb8368c77550bb to your computer and use it in GitHub Desktop.
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
| first = (promises...) -> | |
| out = $q.defer() | |
| for promise in promises | |
| promise.then(out.resolve, out.reject) | |
| out | |
| timeoutIn = (delay) -> | |
| $timeout(-> 'timed out', delay) | |
| first = (currentUser.$promise, $timeout(2000)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment