Skip to content

Instantly share code, notes, and snippets.

@notbrain
Created December 16, 2014 06:39
Show Gist options
  • Save notbrain/f7006618824a985017fe to your computer and use it in GitHub Desktop.
Save notbrain/f7006618824a985017fe to your computer and use it in GitHub Desktop.
quick glance $q deferring of promise
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