diff options
Diffstat (limited to 'js/components/treeview/treeview.reel/treeview.html')
-rw-r--r-- | js/components/treeview/treeview.reel/treeview.html | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/js/components/treeview/treeview.reel/treeview.html b/js/components/treeview/treeview.reel/treeview.html new file mode 100644 index 00000000..d70b016c --- /dev/null +++ b/js/components/treeview/treeview.reel/treeview.html | |||
@@ -0,0 +1,55 @@ | |||
1 | <!DOCTYPE html> | ||
2 | <!-- <copyright> | ||
3 | This file contains proprietary software owned by Motorola Mobility, Inc.<br/> | ||
4 | No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/> | ||
5 | (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved. | ||
6 | </copyright> --> | ||
7 | <html lang="en"> | ||
8 | <head> | ||
9 | <meta http-equiv="content-type" content="text/html; charset=utf-8" /> | ||
10 | <link rel="stylesheet" href="treeview.css" type="text/css"> | ||
11 | <script type="text/montage-serialization"> | ||
12 | { | ||
13 | "owner" : { | ||
14 | "module" : "js/components/treeview/treeview.reel", | ||
15 | "name" : "Treeview", | ||
16 | "properties" : { | ||
17 | "element" : { "#" : "treeView"}, | ||
18 | "defaultBranchComponent" : { "@" : "defaultBranch"}, | ||
19 | "defaultLeafComponent" : { "@" : "defaultLeaf"}, | ||
20 | "scrollview" : { "@" : "scrollview"}, | ||
21 | "slot": {"@": "slot"} | ||
22 | } | ||
23 | }, | ||
24 | "defaultBranch" : { | ||
25 | "module" : "js/components/treeview/branch.reel", | ||
26 | "name" : "Branch" | ||
27 | }, | ||
28 | "defaultLeaf" : { | ||
29 | "module" : "js/components/treeview/presets-leaf.reel", | ||
30 | "name" : "Leaf" | ||
31 | }, | ||
32 | "scrollview": { | ||
33 | "module": "montage/ui/scrollview.reel", | ||
34 | "name": "Scrollview", | ||
35 | "properties": { | ||
36 | "element": {"#": "treeView"}, | ||
37 | "axis": "vertical" | ||
38 | } | ||
39 | }, | ||
40 | "slot": { | ||
41 | "module": "montage/ui/slot.reel", | ||
42 | "name": "Slot", | ||
43 | "properties": { | ||
44 | "element": {"#": "rootBranch"} | ||
45 | } | ||
46 | } | ||
47 | } | ||
48 | </script> | ||
49 | </head> | ||
50 | <body> | ||
51 | <div id="treeView" class="treeView"> | ||
52 | <div id="rootBranch" class="treeRoot"></div> | ||
53 | </div> | ||
54 | </body> | ||
55 | </html> \ No newline at end of file | ||