From 70a369780539e6b3bd985772fcec3f6f5b919e95 Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Wed, 8 Dec 2010 17:47:50 +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 e71b301ab..6be2d5ded 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 ? 1 : 0]);\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 , 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}" }, "default_height": 500, "default_width": 600, -- 2.39.2