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 | 68 |
1 files changed, 68 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..78836f21 --- /dev/null +++ b/js/panels/css-panel/style-sheets-view.reel/style-sheets-view.html | |||
@@ -0,0 +1,68 @@ | |||
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 | "styleSheetList": { | ||
20 | "module" : "montage/ui/list.reel", | ||
21 | "name": "List", | ||
22 | "properties": { | ||
23 | "element": {"#": "sheet-list" } | ||
24 | }, | ||
25 | "bindings": { | ||
26 | "content": { | ||
27 | "boundObject": {"@": "owner" }, | ||
28 | "boundObjectPropertyPath": "styleSheets" | ||
29 | } | ||
30 | } | ||
31 | }, | ||
32 | "sheet": { | ||
33 | "module": "js/panels/css-panel/style-sheet.reel", | ||
34 | "name": "StyleSheet", | ||
35 | "bindings": { | ||
36 | "source": { | ||
37 | "boundObject": {"@": "styleSheetList"}, | ||
38 | "boundObjectPropertyPath": "objectAtCurrentIteration", | ||
39 | "oneway": true | ||
40 | } | ||
41 | } | ||
42 | }, | ||
43 | "noDocumentCondition": { | ||
44 | "module": "montage/ui/condition.reel", | ||
45 | "name": "Condition", | ||
46 | "properties": { | ||
47 | "element": {"#": "no-document-message" } | ||
48 | }, | ||
49 | "bindings": { | ||
50 | "condition": { | ||
51 | "boundObject": {"@": "owner" }, | ||
52 | "boundObjectPropertyPath": "noDocumentCondition", | ||
53 | "oneway": true | ||
54 | } | ||
55 | } | ||
56 | } | ||
57 | } | ||
58 | </script> | ||
59 | </head> | ||
60 | <body> | ||
61 | <div id="style-sheet-view-container" class="style-sheet-view-container"> | ||
62 | <h3 id="no-document-message">No document loaded. Please Open or Create a new document.</h3> | ||
63 | <ul id="sheet-list"> | ||
64 | <li id="sheet-item"></li> | ||
65 | </ul> | ||
66 | </div> | ||
67 | </body> | ||
68 | </html> \ No newline at end of file | ||