Minor fixes in KPI report wording

Change-Id: I2bbdd52ff5442f42cd2e99890b5b8c5fd4027c82
This commit is contained in:
Ilya Shakhat 2013-12-26 21:04:13 +04:00
parent 9dc21b6840
commit 78fefcd894

View File

@ -46,7 +46,7 @@
success: function (data) {
data = data["stats"];
var position = -1;
var index = -1;
var index = 0;
var sum = 0;
for (var i = 0; i < data.length; i++) {
@ -56,11 +56,9 @@
}
}
sum += data[i].metric;
if (data[i].index) {
index ++;
}
data[i].index = ++ index; // re-index
if (data[i].id == item_id) {
position = index;
position = i;
}
}
@ -105,7 +103,7 @@
return {
mark: mark,
info: mark? "Achieved metric " + item.metric:
"Position " + item.metric + " is worse than the goal in " + metric,
"Metric " + item.metric + " is worse than the goal in " + metric,
value: item.index
}
});