From 971999cfb5c066a5cec9343b06d905918a4ba37f Mon Sep 17 00:00:00 2001 From: cubedro Date: Sat, 11 Apr 2015 15:32:03 +0300 Subject: [PATCH] added plus in front of propagation time if > 0 --- public/js/filters.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/public/js/filters.js b/public/js/filters.js index 0d5e66d..9469743 100644 --- a/public/js/filters.js +++ b/public/js/filters.js @@ -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() {