Files
2024_WEBSITE_fipf/plugins/fipfcard_plugin/utils/plgntls_fetch.js
asus 0177531924 - forget old ajax wp, now use fetch wp
- trying js files without imports
2024-02-26 13:18:19 +01:00

13 lines
290 B
JavaScript

function PLGNTLS_fetch(url, options = {}) {
console.log("inside PLGNTLS_fetch");
url = PLGNTLS_data.fetch_url + url;
options.headers = options.headers || {};
options.headers['X-WP-Nonce'] = PLGNTLS_data.fetch_nonce,
console.log("options:", options);
return fetch(url, options);
}