JSDOC/Token.js
authorAlan Knowles <alan@akbkhome.com>
Tue, 23 Aug 2011 04:00:33 +0000 (12:00 +0800)
committerAlan Knowles <alan@akbkhome.com>
Tue, 23 Aug 2011 04:00:33 +0000 (12:00 +0800)
JSDOC/Token.js

index 465d70e..7c15b20 100644 (file)
@@ -59,12 +59,14 @@ Token = XObject.define(
             lvl = lvl || 0;
             
             var ret =  this.data ;
+            
+            
             if (this.items) {
                 var ar = [];
-                Roo.each(this.items, function(ai) {
+                this.items.forEach(  function(ai) {
                     
                     var str = '';
-                    Roo.each(ai, function(it) {
+                    ai.forEach(  function(it) {
                         str += it.toRaw(lvl + 1);
                     })
                     ar.push(str);
@@ -76,7 +78,7 @@ Token = XObject.define(
             if (this.props) {
                 for (var i in this.props) {
                     ret += this.props[i].key.toRaw(lvl+1) + ' : ';
-                    Roo.each(this.props[i].val, function(e) {
+                    this.props[i].val.forEach( function(e) {
                         ret+=e.toRaw(lvl+1);
                     })