diff options
author | Kristian Lyngstol <kly@kly@.no> | 2016-03-24 21:15:50 +0100 |
---|---|---|
committer | Kristian Lyngstol <kly@kly@.no> | 2016-03-24 21:15:50 +0100 |
commit | 7ac4551ed94c1f1393bc69e595a90dbe15bc8f6c (patch) | |
tree | d68fbc18f69cc33aaabec82b1092ba147a32b346 /web/nms-public.gathering.org/js/nms.js | |
parent | f0a12faa1dceb7c21e1688164342aa58e8f136f2 (diff) |
NMS: Update public api
Diffstat (limited to 'web/nms-public.gathering.org/js/nms.js')
-rw-r--r-- | web/nms-public.gathering.org/js/nms.js | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/web/nms-public.gathering.org/js/nms.js b/web/nms-public.gathering.org/js/nms.js index c09fca0..8783844 100644 --- a/web/nms-public.gathering.org/js/nms.js +++ b/web/nms-public.gathering.org/js/nms.js @@ -100,14 +100,16 @@ function nmsTimer(handler, interval, name, description) { * Convenience function that doesn't support huge numbers, and it's easier * to comment than to fix. But not really, but I'm not fixing it anyway. */ -function byteCount(bytes) { +function byteCount(bytes,precision) { + if (precision ==undefined) + precision = 1; var units = ['', 'K', 'M', 'G', 'T', 'P']; var i = 0; while (bytes > 1024) { bytes = bytes / 1024; i++; } - return bytes.toFixed(1) + units[i]; + return bytes.toFixed(precision) + units[i]; } /* |