pull/1/head
yflory 4 years ago
parent 5a8bc88ac5
commit 629eb48562

@ -269,9 +269,8 @@
Util.magnitudeOfBytes = function (bytes) { Util.magnitudeOfBytes = function (bytes) {
if (bytes >= oneGigabyte) { return 'GB'; } if (bytes >= oneGigabyte) { return 'GB'; }
// smallest supported format is MB to preserve existing behaviour else if (bytes >= oneMegabyte) { return 'MB'; }
else /* if (bytes >= oneMegabyte) */ { return 'MB'; } else { return 'KB'; }
//else { return 'KB'; }
}; };
// given a path, asynchronously return an arraybuffer // given a path, asynchronously return an arraybuffer

Loading…
Cancel
Save