Skip to content
Snippets Groups Projects
Unverified Commit 9cfcab55 authored by Fredrik Jonsson's avatar Fredrik Jonsson Committed by GitHub
Browse files

Merge pull request #1727 from OpenTechFund/fix/check-for-js-cookie

Check for js cookie before using it.
parents 1009fa0b 80dc8a2f
No related branches found
No related tags found
No related merge requests found
...@@ -157,14 +157,17 @@ ...@@ -157,14 +157,17 @@
}); });
// Setting the CSRF token on AJAX requests. // Setting the CSRF token on AJAX requests.
var csrftoken = window.Cookies.get('csrftoken'); var csrftoken = false;
if (typeof window.Cookies !== 'undefined') {
csrftoken = window.Cookies.get('csrftoken');
}
function csrfSafeMethod(method) { function csrfSafeMethod(method) {
// these HTTP methods do not require CSRF protection // these HTTP methods do not require CSRF protection
return (/^(GET|HEAD|OPTIONS|TRACE)$/.test(method)); return (/^(GET|HEAD|OPTIONS|TRACE)$/.test(method));
} }
$.ajaxSetup({ $.ajaxSetup({
beforeSend: function (xhr, settings) { beforeSend: function (xhr, settings) {
if (!csrfSafeMethod(settings.type) && !this.crossDomain) { if (csrftoken && !csrfSafeMethod(settings.type) && !this.crossDomain) {
xhr.setRequestHeader('X-CSRFToken', csrftoken); xhr.setRequestHeader('X-CSRFToken', csrftoken);
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment