From 24c4a7c1f13871c989c819ec7355ee79cefeea0e Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Wed, 8 Dec 2010 17:48:05 +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 6be2d5ded..634b18679 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 , 0, 1 ]);\n });\n var ls = this.get('children-list-store');\n this.data.allchildren.forEach(function(v) {\n ls.append( [ v , 0, 1]);\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 , i > 10 ? false : true]);\n };\n \n \n \n}" }, "default_height": 500, "default_width": 600, -- 2.39.2