Merge branch 'master' of https://github.com/openclassify/openclassify into muammertop

This commit is contained in:
Muammer Top 2020-11-16 16:01:00 +03:00
commit 72ec7a85fe
2 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,11 @@
function crudAjax(params, url, type, callback, async = false) {
$.ajax({
type: type,
data: params,
async: async,
url: url,
success: function (response) {
callback(response);
},
});
}

View File

@ -11,3 +11,4 @@
{{ script|raw }}
{% endfor %}
</script>
{{ asset_script('visiosoft.theme.defaultadmin::js/visiosoft.js') }}