diff options
Diffstat (limited to 'js/panels/css-panel/style-sheets-view.reel/style-sheets-view.html')
-rw-r--r-- | js/panels/css-panel/style-sheets-view.reel/style-sheets-view.html | 77 |
1 files changed, 77 insertions, 0 deletions
diff --git a/js/panels/css-panel/style-sheets-view.reel/style-sheets-view.html b/js/panels/css-panel/style-sheets-view.reel/style-sheets-view.html new file mode 100644 index 00000000..d1dbfa2b --- /dev/null +++ b/js/panels/css-panel/style-sheets-view.reel/style-sheets-view.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 lang="en"> | ||
8 | <head> | ||
9 | <meta http-equiv="content-type" content="text/html; charset=utf-8" /> | ||
10 | <script type="text/montage-serialization"> | ||
11 | { | ||
12 | "owner": { | ||
13 | "module" : "js/panels/css-panel/style-sheets-view.reel", | ||
14 | "name" : "StyleSheetsView", | ||
15 | "properties" : { | ||
16 | "element" : {"#" : "style-sheet-view-container"} | ||
17 | } | ||
18 | }, | ||
19 | "arrayController" : { | ||
20 | "module" : "montage/ui/controller/array-controller", | ||
21 | "name": "ArrayController", | ||
22 | "bindings": { | ||
23 | "content": { | ||
24 | "boundObject": {"@": "owner"}, | ||
25 | "boundObjectPropertyPath": "styleSheets", | ||
26 | "oneway": true | ||
27 | } | ||
28 | } | ||
29 | }, | ||
30 | "styleSheetList": { | ||
31 | "module" : "montage/ui/list.reel", | ||
32 | "name": "List", | ||
33 | "properties": { | ||
34 | "element": {"#": "sheet-list" }, | ||
35 | "contentController": {"@": "arrayController"} | ||
36 | } | ||
37 | }, | ||
38 | "sheet": { | ||
39 | "module": "js/panels/css-panel/style-sheet.reel", | ||
40 | "name": "StyleSheet", | ||
41 | "properties": { | ||
42 | "element": {"#": "sheet-item"} | ||
43 | }, | ||
44 | "bindings": { | ||
45 | "source": { | ||
46 | "boundObject": {"@": "styleSheetList"}, | ||
47 | "boundObjectPropertyPath": "objectAtCurrentIteration", | ||
48 | "oneway": true | ||
49 | } | ||
50 | } | ||
51 | }, | ||
52 | "noDocumentCondition": { | ||
53 | "module": "montage/ui/condition.reel", | ||
54 | "name": "Condition", | ||
55 | "properties": { | ||
56 | "element": {"#": "no-document-message" } | ||
57 | }, | ||
58 | "bindings": { | ||
59 | "condition": { | ||
60 | "boundObject": {"@": "owner" }, | ||
61 | "boundObjectPropertyPath": "noDocumentCondition", | ||
62 | "oneway": true | ||
63 | } | ||
64 | } | ||
65 | } | ||
66 | } | ||
67 | </script> | ||
68 | </head> | ||
69 | <body> | ||
70 | <div id="style-sheet-view-container" class="style-sheet-view-container"> | ||
71 | <h3 id="no-document-message">No document loaded. Please Open or Create a new document.</h3> | ||
72 | <ul id="sheet-list"> | ||
73 | <li><div id="sheet-item"></div></li> | ||
74 | </ul> | ||
75 | </div> | ||
76 | </body> | ||
77 | </html> \ No newline at end of file | ||