- Clean up Web UI

This commit is contained in:
Christophe Dumez 2009-11-25 11:36:36 +00:00
parent b88d0e87d9
commit 93f3d0b687
3 changed files with 4 additions and 5 deletions

View file

@ -119,7 +119,6 @@ window.addEvent('domready', function(){
}
return '';
};
var round1 = function(val){return Math.round(val*10)/10};
var ajaxfn = function(){
var queueing_enabled = false;
var url = 'json/events';
@ -147,7 +146,7 @@ window.addEvent('domready', function(){
row[1] = event.name;
row[2] = event.priority
row[3] = event.size;
row[4] = round1(event.progress*100);
row[4] = (event.progress*100).round(1);
row[5] = event.num_seeds;
row[6] = event.num_leechs;
row[7] = event.dlspeed;