Placeholder for ajax form 'complete' callback

This commit is contained in:
Oliver 2018-05-04 00:02:52 +10:00
parent 17e6147c47
commit 99fb466a6c

View File

@ -155,6 +155,9 @@ function handleModalForm(modal, url, options) {
error: function(xhr, ajaxOptions, thrownError) {
alert('Error posting form data:\n' + thrownError);
$(modal).modal('hide');
},
complete: function(xhr) {
//TODO
}
});
});