-
-
Save notbrain/f7006618824a985017fe to your computer and use it in GitHub Desktop.
quick glance $q deferring of promise
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
var deferred = $q.defer(); | |
$timeout(function() { | |
deferred.resolve('Hello!'); | |
}, 1000); | |
return deferred.promise; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment