revert for crud changes did by @mgoleli

This commit is contained in:
alp 2020-04-20 10:45:25 +03:00
parent 6018567b4f
commit 5bf088dab2

View File

@ -3,3 +3,15 @@
// Go!
})(window, document);
function crud(params, url, type, callback) {
$.ajax({
type: type,
async: false,
data: params,
url: url,
success: function (response) {
callback(response);
},
});
}