فهرست منبع

Display the uploaded file in the HTTP interface

Signed-off-by: Felix Paul Kühne <fkuehne@videolan.org>
Romain Goyet 12 سال پیش
والد
کامیت
5bc9ebc708
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      Resources/web/index.html

+ 1 - 1
Resources/web/index.html

@@ -14,7 +14,7 @@
         $('#fileupload').fileupload({
           dataType: 'json',
           done: function (e, data) {
-            $.each(data.result.files, function (index, file) {
+            $.each(data.files, function (index, file) {
               $('<p/>').text(file.name).appendTo(document.body);
             });
           },