Skip to content

Instantly share code, notes, and snippets.

@hatchan
Created June 6, 2014 12:28
Show Gist options
  • Save hatchan/62a26d0c01d827dcd0ea to your computer and use it in GitHub Desktop.
Save hatchan/62a26d0c01d827dcd0ea to your computer and use it in GitHub Desktop.
promise.then(function(results) {
do_stuff();
})
.catch(function(err) {
console.error(err);
});
promise.then(function(results) {
do_stuff();
})
.catch(function(err){
console.error(err);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment