Commit f614a9c6 authored by Nicolas Widart's avatar Nicolas Widart

Removing the width and height columns from js

parent 9ad370e8
......@@ -91,7 +91,7 @@ $( document ).ready(function() {
autoProcessQueue: true
});
myDropzone.on("success", function(file, http) {
var tableRow = '<tr><td>' + http.created_at + '</td><td>'+http.filename+'</td><td></td><td></td><td>action</td></tr>';
var tableRow = '<tr><td>' + http.created_at + '</td><td>'+http.filename+'</td><td></td></tr>';
var elem = $(tableRow).css('display', 'none');
$('table tbody').prepend(elem);
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