aboutsummaryrefslogtreecommitdiff
path: root/js/components/treeview/ninja-branch.reel/ninja-branch.js
diff options
context:
space:
mode:
authorArmen Kesablyan2012-06-19 01:03:59 -0700
committerArmen Kesablyan2012-06-19 01:03:59 -0700
commit2e13a73e4ee980a6f73f6ff48b2a195eb209a7db (patch)
treed352f5e769eae0e1b7b76ccbeafa9b174b1a9918 /js/components/treeview/ninja-branch.reel/ninja-branch.js
parent244e608645778746d1a3b5aa0d4c0868f7c5c272 (diff)
parentc59eb371559a3061ce53223e249ca97daace5968 (diff)
downloadninja-2e13a73e4ee980a6f73f6ff48b2a195eb209a7db.tar.gz
Merge branch 'refs/heads/master' into binding
Conflicts: js/components/layout/tools-list.reel/tools-list.html js/components/layout/tools-properties.reel/tools-properties.html js/document/document-html.js js/document/templates/app/main.js js/panels/Panel.reel/Panel.js node_modules/montage/ui/native-control.js Signed-off-by: Armen Kesablyan <armen@motorola.com>
Diffstat (limited to 'js/components/treeview/ninja-branch.reel/ninja-branch.js')
-rw-r--r--js/components/treeview/ninja-branch.reel/ninja-branch.js33
1 files changed, 31 insertions, 2 deletions
diff --git a/js/components/treeview/ninja-branch.reel/ninja-branch.js b/js/components/treeview/ninja-branch.reel/ninja-branch.js
index 0d1a1d0e..72ef3ccd 100644
--- a/js/components/treeview/ninja-branch.reel/ninja-branch.js
+++ b/js/components/treeview/ninja-branch.reel/ninja-branch.js
@@ -8,12 +8,41 @@ var Montage = require("montage").Montage,
8 TreeNode = require("js/components/treeview/tree-node").TreeNode; 8 TreeNode = require("js/components/treeview/tree-node").TreeNode;
9 9
10var Branch = exports.Branch = Montage.create(TreeNode, { 10var Branch = exports.Branch = Montage.create(TreeNode, {
11 hasTemplate:{ 11 label: {
12 value:true 12 value: null
13// serializable: true
13 }, 14 },
15
16 branchList: {
17 value: null
18// serializable: true
19 },
20
21 arrayController: {
22 value: null
23// serializable: true
24 },
25
14 repetition:{ 26 repetition:{
15 value: null 27 value: null
28// serializable: true
29 },
30
31 leafComponent: {
32 value: null
33// serializable: true
34 },
35
36 branchComponent: {
37 value: null
38// serializable: true
16 }, 39 },
40
41 collapser: {
42 value: null
43// serializable: true
44 },
45
17 prepareForDraw : { 46 prepareForDraw : {
18 value: function() { 47 value: function() {
19 this.collapser.removeAttribute('id'); 48 this.collapser.removeAttribute('id');