Removed useless icons to reduce tarball size

This commit is contained in:
Christophe Dumez 2010-05-24 14:43:31 +00:00
parent 781d33b869
commit 472604d1b0
10 changed files with 22 additions and 21 deletions

View file

@ -190,6 +190,17 @@ window.addEvent('load', function(){
var waitingTrInfo = false;
var stateToImg = function(state){
if(state == "pausedUP" || state == "pausedDL") {
state = "paused";
} else {
if(state == "queuedUP" || state == "queuedDL") {
state = "queued";
} else {
if(state == "checkingUP" || state == "checkingDL") {
state = "checking";
}
}
}
return 'images/skin/'+state+'.png';
};
var loadTransferInfo = function() {