As in #822
This commit is contained in:
Igor Zhukov 2015-06-30 14:17:52 +03:00
parent 59a24d8096
commit c480d370ad

View File

@ -157,7 +157,7 @@ angular.module('myApp.filters', ['myApp.i18n'])
return size + ' b';
}
else if (size < 1048576) {
return Math.round(size / 1024) + ' Kb';
return Math.round(size / 1024) + ' KB';
}
var mbs = size / 1048576;
if (progressing) {