Skip to content

Instantly share code, notes, and snippets.

@cahlan
Created March 10, 2015 22:01
Show Gist options
  • Save cahlan/d9acb73e1ab56e980cc2 to your computer and use it in GitHub Desktop.
Save cahlan/d9acb73e1ab56e980cc2 to your computer and use it in GitHub Desktop.
simple promise API for handing success/error/other in NG
//controller.js
myService.getStuff().then(function() {
//upon deferred.resolve
}).catch(function(err) {
//upon deferred.reject
}).finally(function() {
//no matter what
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment