Fix CSV windows
This commit is contained in:
parent
2a7203baa6
commit
f31fadd0e1
1 changed files with 5 additions and 5 deletions
|
@ -27,10 +27,10 @@
|
|||
$('#load_button').addClass('disabled');
|
||||
|
||||
var file = files[0];
|
||||
if (file.type != 'text/csv') {
|
||||
alert("{{_('Upload CSV only')}}");
|
||||
return;
|
||||
}
|
||||
//if (file.type != 'text/csv') {
|
||||
// alert("{{_('Upload CSV only')}}");
|
||||
// return;
|
||||
//}
|
||||
var form_data = new FormData();
|
||||
form_data.append('csv_file', file, file.name);
|
||||
|
||||
|
@ -108,4 +108,4 @@
|
|||
<br>
|
||||
<table id="table_csv" class="table"></table>
|
||||
<p style="margin-left: 2em" id="log"></p>
|
||||
{% endblock %}
|
||||
{% endblock %}
|
||||
|
|
Loading…
Reference in a new issue