From af39038ea845f3dc19361abf144ab0426ab16b2a Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Wed, 8 Dec 2010 17:49:20 +0800 Subject: [PATCH] DependTree/Window.bjs --- DependTree/Window.bjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DependTree/Window.bjs b/DependTree/Window.bjs index af49a9064..60ef84d2a 100644 --- a/DependTree/Window.bjs +++ b/DependTree/Window.bjs @@ -7,7 +7,7 @@ "items": [ { "listeners": { - "show": "function (self) {\n print(\"SHOW\");\n var BuildLists = imports['BuildLists.js'].BuildLists;\n this.data = new BuildLists();\n print(JSON.stringify(this.data.allmethods, null,4));\n \n var ls = this.get('method-list-store');\n this.data.allmethods.forEach(function(v) {\n ls.append( [ v , false, true ]);\n });\n var ls = this.get('children-list-store');\n this.data.allchildren.forEach(function(v) {\n ls.append( [ v , false, true ]);\n });\n var ls = this.get('class-list-store');\n var i =0;\n for (var c in this.data.methods) {\n i++;\n ls.append( [ c , true , i > 10 ? false : true]);\n };\n \n \n \n}" + "show": "function (self) {\n print(\"SHOW\");\n var BuildLists = imports['BuildLists.js'].BuildLists;\n this.data = new BuildLists();\n print(JSON.stringify(this.data.allmethods, null,4));\n \n var ls = this.get('method-list-store');\n this.data.allmethods.forEach(function(v) {\n ls.append( [ v , false, true ]);\n });\n var ls = this.get('children-list-store');\n this.data.allchildren.forEach(function(v) {\n ls.append( [ v , false, true ]);\n });\n var ls = this.get('class-list-store');\n var i =0;\n for (var c in this.data.methods) {\n i++;\n ls.append( [ c , true , true]);\n };\n \n \n \n}" }, "default_height": 500, "default_width": 600, -- 2.39.2