You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

oc-requesttoken.js 209B

123456
  1. $(document).on('ajaxSend',function(elm, xhr, settings) {
  2. if(settings.crossDomain === false) {
  3. xhr.setRequestHeader('requesttoken', oc_requesttoken);
  4. xhr.setRequestHeader('OCS-APIREQUEST', 'true');
  5. }
  6. });