File size: 287 Bytes
046723b
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
$(document).ready(function () {
    $.ajaxSetup({
        beforeSend: function (xhr, settings) {
            if (!/^(GET|HEAD|OPTIONS|TRACE)$/i.test(settings.type) && !this.crossDomain) {
                xhr.setRequestHeader("X-CSRFToken", csrftoken)
            }
        }
    })
});