mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-24 18:26:11 +03:00
- Fixed icon for seeding torrents (paused or queued) in Web UI
This commit is contained in:
parent
3ae55b6a6f
commit
dfb2046f82
1 changed files with 2 additions and 2 deletions
|
@ -95,7 +95,7 @@ window.addEvent('domready', function(){
|
|||
if(event.seed) {
|
||||
var row = new Array();
|
||||
row.length = 4;
|
||||
row[0] = '<img src="images/skin/seeding.png"/>';
|
||||
row[0] = stateToImg(event.state);
|
||||
row[1] = event.name;
|
||||
row[2] = fsize(event.size);
|
||||
row[3] = fspeed(event.upspeed);
|
||||
|
@ -151,7 +151,7 @@ window.addEvent('domready', function(){
|
|||
});
|
||||
}
|
||||
waiting=false;
|
||||
ajaxfn.delay(2000);
|
||||
ajaxfn.delay(1000);
|
||||
}
|
||||
}).send();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue