Revert "csrf: Improve API for when no CSRF input is available."

This reverts commit 9198fa4ec9.
This commit is contained in:
Tim Abbott 2018-12-16 16:15:54 -08:00
parent 7d23076a0e
commit 6416737e70
1 changed files with 1 additions and 10 deletions

View File

@ -1,18 +1,9 @@
var csrf_token;
$(function () {
// This requires that we used Jinja2's {% csrf_input %} somewhere on the page.
var csrf_input = $('input[name="csrfmiddlewaretoken"]');
if (csrf_input.length > 0) {
csrf_token = csrf_input.attr('value');
} else {
csrf_token = undefined;
}
csrf_token = $('input[name="csrfmiddlewaretoken"]').attr('value');
window.csrf_token = csrf_token;
if (csrf_token === undefined) {
return;
}
$.ajaxSetup({
beforeSend: function (xhr, settings) {
if (!(/^http:.*/.test(settings.url) || /^https:.*/.test(settings.url))) {