cant refer to local with 'this'
[roojs1] / roojs-debug.js
index 4c9a82c..b03a292 100644 (file)
@@ -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];
         }