CC-2290:Clicking on another tab whilst uplaoding track kills
additional fix - when user adds file and removes file, and the list is empty, there is no more alert.
This commit is contained in:
parent
1f02ba813d
commit
551ed289ca
|
@ -29,7 +29,11 @@ $(document).ready(function() {
|
||||||
var uploadProgress = false;
|
var uploadProgress = false;
|
||||||
|
|
||||||
uploader.bind('QueueChanged', function(){
|
uploader.bind('QueueChanged', function(){
|
||||||
uploadProgress = true;
|
if(uploader.files.length > 0){
|
||||||
|
uploadProgress = true;
|
||||||
|
}else{
|
||||||
|
uploadProgress = false;
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
uploader.bind('UploadComplete', function(){
|
uploader.bind('UploadComplete', function(){
|
||||||
|
|
Loading…
Reference in New Issue