Merge branch 'cc-2290-clicking-on-another-tab-whilst-uploading-track-kills-upload' into devel

This commit is contained in:
james 2011-05-31 12:26:51 -04:00
commit 1e62a7be9c
1 changed files with 5 additions and 1 deletions

View File

@ -29,7 +29,11 @@ $(document).ready(function() {
var uploadProgress = false;
uploader.bind('QueueChanged', function(){
uploadProgress = true;
if(uploader.files.length > 0){
uploadProgress = true;
}else{
uploadProgress = false;
}
});
uploader.bind('UploadComplete', function(){