Merge pull request #67 from cubedro/develop

Added plus in front of propagation time if > 0
This commit is contained in:
Marian OANCΞA 2015-04-14 16:21:44 +03:00
commit af168f465b
1 changed files with 5 additions and 5 deletions

View File

@ -148,26 +148,26 @@ angular.module('netStatsApp.filters', [])
var result = 0;
if(ms < 1000) {
return ms + " ms";
return (ms === 0 ? "" : "+") + ms + " ms";
}
if(ms < 1000*60) {
result = ms/1000;
return result.toFixed(1) + " s";
return "+" + result.toFixed(1) + " s";
}
if(ms < 1000*60*60) {
result = ms/1000/60;
return Math.round(result) + " min";
return "+" + Math.round(result) + " min";
}
if(ms < 1000*60*60*24) {
result = ms/1000/60/60;
return Math.round(result) + " h";
return "+" + Math.round(result) + " h";
}
result = ms/1000/60/60/24;
return Math.round(result) + " days";
return "+" + Math.round(result) + " days";
};
})
.filter('avgTimeFilter', function() {