first commit

This commit is contained in:
2026-03-05 13:07:40 +01:00
commit 64ba0721ee
25709 changed files with 4691006 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
function wpvivid_post_request_quick(ajax_data, callback, error_callback, time_out){
if(typeof time_out === 'undefined') time_out = 30000;
ajax_data.nonce=wpvivid_quick_snapshot_ajax_object.ajax_nonce;
jQuery.ajax({
type: "post",
url: wpvivid_quick_snapshot_ajax_object.ajax_url,
data: ajax_data,
cache:false,
success: function (data) {
callback(data);
},
error: function (XMLHttpRequest, textStatus, errorThrown) {
error_callback(XMLHttpRequest, textStatus, errorThrown);
},
timeout: time_out
});
}