X-Git-Url: http://git.roojs.org/?p=roojs1;a=blobdiff_plain;f=roojs-debug.js;h=b03a292c2e6b353c79539d5fbffd73cd1c48b47f;hp=4c9a82c533bd4e716e29b39675dd71fa20394be9;hb=e6e74dd803c2f067844dd0d2a8b3176a06041b88;hpb=9da53a68d13d5f73e41052aa33a3b3b44d56e887 diff --git a/roojs-debug.js b/roojs-debug.js index 4c9a82c533..b03a292c2e 100644 --- a/roojs-debug.js +++ b/roojs-debug.js @@ -13991,6 +13991,7 @@ Roo.util.Format = function(){ stripTags : function(v){ return !v ? v : String(v).replace(this.stripTagsRE, ""); }, + /** * Size in Mb,Gb etc. * @param {Number} value The number to be formated @@ -14000,11 +14001,11 @@ Roo.util.Format = function(){ size : function(value, decimals) { var sizes = ['b', 'k', 'M', 'G', 'T']; - if (v == 0) { + if (value == 0) { return 0; } - var i = parseInt(Math.floor(Math.log(v) / Math.log(1024))); - return this.number(v / Math.pow(1024, i) ,decimals) + ' ' + sizes[i]; + var i = parseInt(Math.floor(Math.log(value) / Math.log(1024))); + return this.number(value/ Math.pow(1024, i) ,decimals) + ' ' + sizes[i]; }