Commit 08773a19 authored by Guillaume Perréal's avatar Guillaume Perréal
Browse files

irsteaFileUpload: la taille du fichier doit être affichée avec .html.

Showing with 1 addition and 1 deletion
+1 -1
......@@ -70,7 +70,7 @@
$.each(data.files, function (index, file) {
var row = $(uploadPrototype);
row.find('.name').text(file.name);
row.find('.size').text(formatSize(file.size));
row.find('.size').html(formatSize(file.size));
if (file.error) {
row.find('.error').text(file.error);
}
......
Supports Markdown
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