aboutsummaryrefslogtreecommitdiff
path: root/js/panels/css-panel/css-panel.reel/css-panel.html
diff options
context:
space:
mode:
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.html63
1 files changed, 63 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..54bb1fae
--- /dev/null
+++ b/js/panels/css-panel/css-panel.reel/css-panel.html
@@ -0,0 +1,63 @@
1<!DOCTYPE html>
2<!-- <copyright>
3This file contains proprietary software owned by Motorola Mobility, Inc.<br/>
4No 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 "stylesViewContainer": {"@": "stylesViewContainer"}
20 }
21 },
22
23 "styleSheetsView": {
24 "module" : "js/panels/css-panel/style-sheets-view.reel",
25 "name": "StyleSheetsView",
26 "properties": {
27 "element": {"#": "style-sheet-view" },
28 "documentNameLabel": {"#": "document-name" }
29 }
30 },
31 "stylesViewContainer": {
32 "module" : "js/panels/css-panel/styles-view-container.reel",
33 "name": "StylesViewContainer",
34 "properties": {
35 "element": {"#": "styles-view-container" },
36 "selectionName": {"@": "selectionName" }
37 }
38 },
39 "selectionName" : {
40 "prototype": "montage/ui/dynamic-text.reel",
41 "properties": {
42 "element": {"#":"selection-name"}
43 },
44 "bindings": {
45 "value" : {
46 "boundObject": {"@": "stylesViewContainer"},
47 "boundObjectPropertyPath": "selectionNameLabelText",
48 "oneway": true
49 }
50 }
51 }
52 }
53 </script>
54</head>
55<body>
56<section id="container" class="css-panel">
57 <h3>Style Sheets <span data-montage-id="document-name" class="document-name"></span></h3>
58 <div id="style-sheet-view"></div>
59 <h3>Styles <span data-montage-id="selection-name" class="selection-name"></span></h3>
60 <div id="styles-view-container"></div>
61</section>
62</body>
63</html> \ No newline at end of file