diff options
Diffstat (limited to 'js/panels/css-panel/css-panel.reel/css-panel.html')
-rw-r--r-- | js/panels/css-panel/css-panel.reel/css-panel.html | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/js/panels/css-panel/css-panel.reel/css-panel.html b/js/panels/css-panel/css-panel.reel/css-panel.html new file mode 100644 index 00000000..4be4d6dd --- /dev/null +++ b/js/panels/css-panel/css-panel.reel/css-panel.html | |||
@@ -0,0 +1,48 @@ | |||
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="css-panel.css" type="text/css"> | ||
11 | <script type="text/montage-serialization"> | ||
12 | { | ||
13 | "owner": { | ||
14 | "module" : "js/panels/css-panel/css-panel.reel", | ||
15 | "name" : "CSSPanelNew", | ||
16 | "properties" : { | ||
17 | "element" : {"#" : "container"}, | ||
18 | "styleSheetsView": {"@": "styleSheetsView"} | ||
19 | } | ||
20 | }, | ||
21 | |||
22 | "styleSheetsView": { | ||
23 | "module" : "js/panels/css-panel/style-sheets-view.reel", | ||
24 | "name": "StyleSheetsView", | ||
25 | "properties": { | ||
26 | "element": {"#": "style-sheet-view" } | ||
27 | } | ||
28 | }, | ||
29 | "stylesViewContainer": { | ||
30 | "module" : "js/panels/css-panel/styles-view-container.reel", | ||
31 | "name": "StylesViewContainer", | ||
32 | "properties": { | ||
33 | "element": {"#": "styles-view-container" } | ||
34 | } | ||
35 | } | ||
36 | } | ||
37 | </script> | ||
38 | </head> | ||
39 | <body> | ||
40 | <section id="container" class="css-panel"> | ||
41 | <h3>Style Sheets</h3> | ||
42 | <div id="style-sheet-view"></div> | ||
43 | <div data-montage-id="resizeBar" class="sub-panel-resizer"></div> | ||
44 | <h3>Styles</h3> | ||
45 | <div id="styles-view-container"></div> | ||
46 | </section> | ||
47 | </body> | ||
48 | </html> \ No newline at end of file | ||