Skip to content

Instantly share code, notes, and snippets.

@ahmadshobirin
Last active January 10, 2019 04:30
Show Gist options
  • Save ahmadshobirin/8275d7b11afd41176195503692be349e to your computer and use it in GitHub Desktop.
Save ahmadshobirin/8275d7b11afd41176195503692be349e to your computer and use it in GitHub Desktop.
error: function (xhr) {
console.log(xhr);
if (xhr.readyState === 4) {
if (xhr.status === 404) {
swal({
type: 'error',
title: 'Oops...',
text: xhr.responseJSON.error,
});
} else {
swal({
type: 'error',
title: 'Oops...',
text: 'Something went wrong!',
});
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment