Skip to content

Instantly share code, notes, and snippets.

@AmrAbdulrahman
Created January 25, 2016 19:09
Show Gist options
  • Save AmrAbdulrahman/7aa0518957d179a385a5 to your computer and use it in GitHub Desktop.
Save AmrAbdulrahman/7aa0518957d179a385a5 to your computer and use it in GitHub Desktop.
function asyncOperation() {
// returns promise
}
// show blocking loading modal
asyncOperation()
.then(function() {
// all fine
}, function() {
// something went wrong
})
.finally(function() {
// on either case, we want to hide blocker
// and show the proper message
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment