From c10b696087242685bd293fc2b2cdb700b5b4eeb3 Mon Sep 17 00:00:00 2001 From: cubedro Date: Thu, 5 Mar 2015 17:04:58 +0200 Subject: [PATCH] propagation refactoring --- public/js/filters.js | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/public/js/filters.js b/public/js/filters.js index c7fc4bf..e004fbe 100644 --- a/public/js/filters.js +++ b/public/js/filters.js @@ -118,27 +118,27 @@ angular.module('netStatsApp.filters', []) return function(ms) { var result = 0; - if(ms < 1000){ + if(ms < 1000) { return ms + " ms"; } - if(ms < 1000*60){ + if(ms < 1000*60) { result = ms/1000; - return result.toFixed(1).toString() + " s"; + return result.toFixed(1) + " s"; } - if(ms < 1000*60*60){ + if(ms < 1000*60*60) { result = ms/1000/60; - return result.toFixed(1) + " min"; + return Math.round(result) + " min"; } - if(ms < 1000*60*60*24){ + if(ms < 1000*60*60*24) { result = ms/1000/60/60; - return result.toFixed(1) + " h"; + return Math.round(result) + " h"; } result = ms/1000/60/60/24; - return result.toFixed(1) + " days"; + return Math.round(result) + " days"; }; }) .filter('avgTimeFilter', function() {