diff options
Diffstat (limited to 'js/panels/css-panel/style-sheet.reel/style-sheet.html')
-rw-r--r-- | js/panels/css-panel/style-sheet.reel/style-sheet.html | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/js/panels/css-panel/style-sheet.reel/style-sheet.html b/js/panels/css-panel/style-sheet.reel/style-sheet.html new file mode 100644 index 00000000..64b8e8ae --- /dev/null +++ b/js/panels/css-panel/style-sheet.reel/style-sheet.html | |||
@@ -0,0 +1,75 @@ | |||
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 href="style-sheet.css" rel="stylesheet" type="text/css"> | ||
11 | <script type="text/montage-serialization"> | ||
12 | { | ||
13 | "owner": { | ||
14 | "module" : "js/panels/css-panel/style-sheet.reel", | ||
15 | "name" : "StyleSheet", | ||
16 | "properties" : { | ||
17 | "element" : {"#" : "style-sheet-container"}, | ||
18 | "disableCheckbox": {"@": "disableCheckbox1"}, | ||
19 | "nameText": {"@": "name1"}, | ||
20 | "mediaInput": {"@": "mediaInput1"}, | ||
21 | "deleteButton": {"@": "deleteButton1"} | ||
22 | } | ||
23 | }, | ||
24 | "disableCheckbox1": { | ||
25 | "module": "js/components/checkbox.reel", | ||
26 | "name": "Checkbox", | ||
27 | "properties": { | ||
28 | "element": { "#": "disable-checkbox" }, | ||
29 | "checked": true | ||
30 | } | ||
31 | }, | ||
32 | "name1": { | ||
33 | "module": "montage/ui/dynamic-text.reel", | ||
34 | "name": "DynamicText", | ||
35 | "properties": { | ||
36 | "element": {"#": "sheet-name"}, | ||
37 | "defaultText": "Style sheet" | ||
38 | }, | ||
39 | "bindings": { | ||
40 | "value": { | ||
41 | "boundObject": {"@": "owner"}, | ||
42 | "boundObjectPropertyPath": "name", | ||
43 | "onewway": true | ||
44 | } | ||
45 | } | ||
46 | }, | ||
47 | "mediaInput1": { | ||
48 | "module": "js/components/textfield.reel", | ||
49 | "name": "TextField", | ||
50 | "properties": { | ||
51 | "element": {"#": "media-input"} | ||
52 | } | ||
53 | }, | ||
54 | "deleteButton1": { | ||
55 | "module": "js/components/button.reel", | ||
56 | "name": "Button", | ||
57 | "properties": { | ||
58 | "element": {"#": "delete-button"}, | ||
59 | "label": " " | ||
60 | } | ||
61 | |||
62 | } | ||
63 | } | ||
64 | </script> | ||
65 | </head> | ||
66 | <body> | ||
67 | <div id="style-sheet-container" class="style-sheet-container"> | ||
68 | <div id="disable-checkbox"></div> | ||
69 | <span id="sheet-name"></span> | ||
70 | <label>Media:</label> | ||
71 | <div id="media-input"></div> | ||
72 | <div id="delete-button"></div> | ||
73 | </div> | ||
74 | </body> | ||
75 | </html> \ No newline at end of file | ||