Преглед изворни кода

HUE-4917 [fb] S3 upload progress of large files is not consistent

Enrico Berti пре 9 година
родитељ
комит
454a554
1 измењених фајлова са 1 додато и 3 уклоњено
  1. 1 3
      apps/filebrowser/src/filebrowser/templates/listdir_components.mako

+ 1 - 3
apps/filebrowser/src/filebrowser/templates/listdir_components.mako

@@ -1751,9 +1751,7 @@ from django.utils.translation import ugettext as _
               });
             },
             totaluploadprogress: function (progress) {
-              $('#progressStatusBar div').animate({
-                "width": progress.toFixed() + "%"
-              }, 100);
+              $('#progressStatusBar div').width(progress.toFixed() + "%");
             },
             canceled: function () {
               $.jHueNotify.info("${_('Upload has been canceled')}");