diff options
Diffstat (limited to 'js/components/layout/documents-tab.reel/documents-tab.html')
-rw-r--r-- | js/components/layout/documents-tab.reel/documents-tab.html | 77 |
1 files changed, 77 insertions, 0 deletions
diff --git a/js/components/layout/documents-tab.reel/documents-tab.html b/js/components/layout/documents-tab.reel/documents-tab.html new file mode 100644 index 00000000..94b2e46e --- /dev/null +++ b/js/components/layout/documents-tab.reel/documents-tab.html | |||
@@ -0,0 +1,77 @@ | |||
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> | ||
8 | <head> | ||
9 | <meta http-equiv="content-type" content="text/html; charset=utf-8" /> | ||
10 | |||
11 | <link rel="stylesheet" type="text/css" href="documents-tab.css"> | ||
12 | |||
13 | <script type="text/montage-serialization"> | ||
14 | { | ||
15 | |||
16 | "owner": { | ||
17 | "module": "js/components/layout/documents-tab.reel", | ||
18 | "name": "DocumentsTab", | ||
19 | "properties": { | ||
20 | "element": {"#": "openDocumentsTabComponent"} | ||
21 | } | ||
22 | }, | ||
23 | |||
24 | "documentEntry": { | ||
25 | "module": "js/components/layout/document-entry.reel", | ||
26 | "name": "DocumentEntry", | ||
27 | "properties": { | ||
28 | "element": {"#": "document"} | ||
29 | }, | ||
30 | "bindings": { | ||
31 | "document": { | ||
32 | "boundObject": {"@": "repetition1"}, | ||
33 | "boundObjectPropertyPath": "objectAtCurrentIteration", | ||
34 | "oneway": true | ||
35 | }, | ||
36 | "name": { | ||
37 | "boundObject": {"@": "repetition1"}, | ||
38 | "boundObjectPropertyPath": "objectAtCurrentIteration.name", | ||
39 | "oneway": true | ||
40 | }, | ||
41 | "active": { | ||
42 | "boundObject": {"@": "repetition1"}, | ||
43 | "boundObjectPropertyPath": "objectAtCurrentIteration.isActive", | ||
44 | "oneway": true | ||
45 | } | ||
46 | } | ||
47 | }, | ||
48 | |||
49 | "repetition1": { | ||
50 | "module": "montage/ui/repetition.reel", | ||
51 | "name": "Repetition", | ||
52 | "properties": { | ||
53 | "element": {"#": "openDocuments"} | ||
54 | }, | ||
55 | "bindings": { | ||
56 | "objects": { | ||
57 | "boundObject": {"@": "owner"}, | ||
58 | "boundObjectPropertyPath": "openDocuments", | ||
59 | "oneway": true | ||
60 | } | ||
61 | } | ||
62 | } | ||
63 | |||
64 | } | ||
65 | </script> | ||
66 | |||
67 | </head> | ||
68 | |||
69 | <body> | ||
70 | <div id="openDocumentsTabComponent" class="documentsTab"> | ||
71 | <ul id="openDocuments" class="openDocuments"> | ||
72 | <li id="document"></li> | ||
73 | </ul> | ||
74 | </div> | ||
75 | </body> | ||
76 | |||
77 | </html> | ||