Skip to content

Instantly share code, notes, and snippets.

@yagoferrer
Last active May 31, 2016 04:45
Show Gist options
  • Save yagoferrer/034a2b169c7353fac23bc619432f3ca5 to your computer and use it in GitHub Desktop.
Save yagoferrer/034a2b169c7353fac23bc619432f3ca5 to your computer and use it in GitHub Desktop.
function myPromise() {
function success1() {
}
function error1() {
console.log("yeah that work")
}
return $http.get().then(success1, error1)
}
myPromise().then(function() {
}, function() {
console.log("ups! doesn't work")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment