For the Internet Usage page: http://conso.ebox.ca/index.php the display is very "G" happy.."G" as in Gigabyte.
Firstly, is it possible to switch the "G" to the more natura lookingl: "GB"?.
Secondly, this usage page is exclusively "G" and so decimal representations like "0.015 G" is way too common. Sadly this has very little meaning compared to the more natural "15 MB" (for this example). I obviously want "GB" (err, "G") to remain but it would go a long way for customers if you guys also added "MB" and "KB".
It wouldn't be hard at all. Just 2 lines of very rudimentary middle-school level of code:
if (transfer_amount < 1GB) then transfer_amount *= 1000; // for MB representation
if (transfer_amount < 1MB) then transfer_amount *= 1000; // for KB representation
Simple and Quick to implement. Less than 30 seconds.
I can only assume the only reason it wouldn't ever be added is because of sheer laziness.
↧