Do not process undefined items

This commit is contained in:
Scott Ullrich 2006-01-01 03:11:04 +00:00
parent 97746f83c8
commit 876bb30f50

View File

@ -14,6 +14,9 @@ function stats(x) {
var values = x.split("|");
if(values[0] == 'undefined')
return;
updateCPU(values[0]);
updateMemory(values[1]);
updateUptime(values[2]);