Browse Source

bytes, not bits

readme-update
Miguel Freitas 9 years ago
parent
commit
00fa7904a9
  1. 10
      js/twister_network.js

10
js/twister_network.js

@ -23,11 +23,11 @@ function formatDecimal(value) {
return Math.round(value * scale) / scale; return Math.round(value * scale) / scale;
} }
function formatSize(value) { function formatSize(value) {
if (value<1024) return value + ' b'; if (value<1024) return value + ' B';
if (value<1024*1024) return formatDecimal(value/1024) + ' Kb'; if (value<1024*1024) return formatDecimal(value/1024) + ' KB';
if (value<1024*1024*1024) return formatDecimal(value/(1024*1024)) + ' Mb'; if (value<1024*1024*1024) return formatDecimal(value/(1024*1024)) + ' MB';
if (value<1024*1024*1024*1024) return formatDecimal(value/(1024*1024*1024)) + ' Gb'; if (value<1024*1024*1024*1024) return formatDecimal(value/(1024*1024*1024)) + ' GB';
return formatDecimal(value/(1024*1024*1024*1024)) + ' Tb'; return formatDecimal(value/(1024*1024*1024*1024)) + ' TB';
} }
function formatSpeed(total, rate) { function formatSpeed(total, rate) {
return formatSize(total) + ' @ ' + formatSize(rate) + '/s' return formatSize(total) + ' @ ' + formatSize(rate) + '/s'

Loading…
Cancel
Save