Fix indentation issue

This commit is contained in:
FrancescoUK
2018-07-01 10:46:40 +01:00
committed by jekkos
parent d8f086a840
commit 1026ebb0eb

View File

@@ -24,9 +24,9 @@
return { <?php echo $this->security->get_csrf_token_name(); ?> : function () { return csrf_token(); } };
};
var setup_csrf_token = function() {
$('input[name="<?php echo $this->security->get_csrf_token_name(); ?>"]').val(csrf_token());
};
var setup_csrf_token = function() {
$('input[name="<?php echo $this->security->get_csrf_token_name(); ?>"]').val(csrf_token());
};
var ajax = $.ajax;
@@ -55,5 +55,4 @@
setup_csrf_token();
submit.apply(this, arguments);
};
</script>