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.html62
1 files changed, 62 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..5bc5c87d
--- /dev/null
+++ b/js/panels/css-panel/css-panel.reel/css-panel.html
@@ -0,0 +1,62 @@
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 }
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 "documentNameLabel": {"#": "document-name" }
28 }
29 },
30 "stylesViewContainer": {
31 "module" : "js/panels/css-panel/styles-view-container.reel",
32 "name": "StylesViewContainer",
33 "properties": {
34 "element": {"#": "styles-view-container" },
35 "selectionName": {"@": "selectionName" }
36 }
37 },
38 "selectionName" : {
39 "prototype": "montage/ui/dynamic-text.reel",
40 "properties": {
41 "element": {"#":"selection-name"}
42 },
43 "bindings": {
44 "value" : {
45 "boundObject": {"@": "stylesViewContainer"},
46 "boundObjectPropertyPath": "selectionNameLabelText",
47 "oneway": true
48 }
49 }
50 }
51 }
52 </script>
53</head>
54<body>
55<section id="container" class="css-panel">
56 <h3>Style Sheets <span data-montage-id="document-name" class="document-name"></span></h3>
57 <div id="style-sheet-view"></div>
58 <h3>Styles <span data-montage-id="selection-name" class="selection-name"></span></h3>
59 <div id="styles-view-container"></div>
60</section>
61</body>
62</html> \ No newline at end of file