aboutsummaryrefslogtreecommitdiff
path: root/js/components/ui/tree-basic/tree.reel/tree.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/components/ui/tree-basic/tree.reel/tree.js')
-rw-r--r--js/components/ui/tree-basic/tree.reel/tree.js43
1 files changed, 43 insertions, 0 deletions
diff --git a/js/components/ui/tree-basic/tree.reel/tree.js b/js/components/ui/tree-basic/tree.reel/tree.js
new file mode 100644
index 00000000..67fa20e5
--- /dev/null
+++ b/js/components/ui/tree-basic/tree.reel/tree.js
@@ -0,0 +1,43 @@
1/* <copyright>
2This file contains proprietary software owned by Motorola Mobility, Inc.<br/>
3No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/>
4(c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved.
5</copyright> */
6
7var Montage = require("montage/core/core").Montage;
8var Component = require("montage/ui/component").Component;
9
10exports.Tree = Montage.create(Component, {
11
12 treeViewDataObject:{
13 writable:true,
14 enumerable:true,
15 value:null
16 },
17
18 showIcons :{
19 writable:true,
20 enumerable:true,
21 value:true
22 },
23
24 willDraw: {
25 enumerable: false,
26 value: function() {
27
28 }
29 },
30 draw: {
31 enumerable: false,
32 value: function() {
33
34 }
35 },
36 didDraw: {
37 enumerable: false,
38 value: function() {
39
40 }
41 }
42
43}); \ No newline at end of file