Commit 6ae7f9f3 authored by Nicolas Widart's avatar Nicolas Widart

Adding empty table cell

parent 64c381c7
...@@ -120,7 +120,7 @@ $( document ).ready(function() { ...@@ -120,7 +120,7 @@ $( document ).ready(function() {
autoProcessQueue: true autoProcessQueue: true
}); });
myDropzone.on("success", function(file, http) { myDropzone.on("success", function(file, http) {
var tableRow = '<tr><td>' + http.created_at + '</td><td>'+http.filename+'</td><td></td></tr>'; var tableRow = '<tr><td>' + http.created_at + '</td><td></td><td>'+http.filename+'</td><td></td></tr>';
var elem = $(tableRow).css('display', 'none'); var elem = $(tableRow).css('display', 'none');
$('table tbody').prepend(elem); $('table tbody').prepend(elem);
elem.fadeIn(); elem.fadeIn();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment