Remove shitty AJAX upload

This commit is contained in:
Skia 2016-11-22 15:29:36 +01:00
parent da35292cd5
commit 1c5e658e4b

View File

@ -52,30 +52,4 @@
{% block script %}
{{ super() }}
<script>
$("form").submit(function (event) {
event.preventDefault();
var formData = new FormData($(this)[0]);
var formKeys = formData.keys();
var formEntries = formData.entries();
$.ajax({
url: '',
type: 'POST',
data: formData,
async: false,
cache: false,
contentType: false,
processData: false,
success: function (returndata) {
alert("Upload OK!");
},
error: function () {
alert("Upload failed");
}
});
return false;
});
</script>
{% endblock %}