mirror of
https://gitlab.com/RemixDev/deemix-webui.git
synced 2025-01-01 12:26:01 +00:00
Implemented fluent download bars
This commit is contained in:
parent
2671681ec8
commit
1886e1b3a8
|
@ -30,7 +30,6 @@ socket.on("updateQueue", function(update){
|
|||
if (update.downloaded){
|
||||
queueList[update.uuid].downloaded++
|
||||
$("#download_"+update.uuid+" .queue_downloaded").text(queueList[update.uuid].downloaded)
|
||||
$('#bar_' + update.uuid).css('width', ((queueList[update.uuid].downloaded + queueList[update.uuid].failed) / queueList[update.uuid].size)*100 + '%')
|
||||
}
|
||||
if (update.failed){
|
||||
queueList[update.uuid].failed++
|
||||
|
@ -42,6 +41,7 @@ socket.on("updateQueue", function(update){
|
|||
}
|
||||
if (update.progress){
|
||||
queueList[update.uuid].progress = update.progress
|
||||
$('#bar_' + update.uuid).css('width', update.progress + '%')
|
||||
}
|
||||
}
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue