Skip to content

Instantly share code, notes, and snippets.

@douglaszaltron
Created November 5, 2017 12:47
Show Gist options
  • Save douglaszaltron/ab2a7e0c9134900d9bcc9b121c7d2019 to your computer and use it in GitHub Desktop.
Save douglaszaltron/ab2a7e0c9134900d9bcc9b121c7d2019 to your computer and use it in GitHub Desktop.
Promise loading
function loading(promise) {
ctrl.submitting = true;
$ionicLoading.show();
return promise.finally(function onFinally() {
ctrl.submitting = false;
$ionicLoading.hide();
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment