Fixed Progress bar not progressing

Robbo

Well-known member
Since I am using your XenResource file_uploader.js as a base I have found why the progress bar isn't progressing when uploading a resource (assuming you didn't know since you would have fixed easily). First is $meter is looking for .Inner when it should be looking for .Meter (or changed markup).

Then in AttachmentUploadProgress, var percent should be Math.ceil(e.bytes / e.file.size * 100).
 
Top Bottom