1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-22 04:24:23 +00:00

- Fixed icon for seeding torrents (paused or queued) in Web UI

This commit is contained in:
Christophe Dumez 2008-12-26 15:48:07 +00:00
parent 3ae55b6a6f
commit dfb2046f82

View File

@ -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();
}