Browse Source

Kb to KB

As in #822
master
Igor Zhukov 9 years ago
parent
commit
c480d370ad
  1. 2
      app/js/filters.js

2
app/js/filters.js

@ -157,7 +157,7 @@ angular.module('myApp.filters', ['myApp.i18n']) @@ -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) {

Loading…
Cancel
Save