aboutsummaryrefslogtreecommitdiff
path: root/js/panels/css-panel/style-sheet.reel/style-sheet.html
diff options
context:
space:
mode:
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.html111
1 files changed, 111 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..788cafcc
--- /dev/null
+++ b/js/panels/css-panel/style-sheet.reel/style-sheet.html
@@ -0,0 +1,111 @@
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 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 "nameText": {"@": "name"},
19 "mediaInput": {"@": "mediaInput"},
20 "editButton": {"@": "editButton"},
21 "editView": {"#": "style-sheet-edit"},
22 "disableButton": {"@": "disableButton"},
23 "deleteButton": {"@": "deleteButton"}
24 }
25 },
26 "name": {
27 "module": "montage/ui/dynamic-text.reel",
28 "name": "DynamicText",
29 "properties": {
30 "element": {"#": "sheet-name"},
31 "identifier": "nameText",
32 "defaultText": "Style sheet"
33 },
34 "bindings": {
35 "value": {
36 "boundObject": {"@": "owner"},
37 "boundObjectPropertyPath": "name",
38 "onewway": true
39 }
40 }
41 },
42 "mediaInput": {
43 "module": "js/components/textfield.reel",
44 "name": "TextField",
45 "properties": {
46 "element": {"#": "media-input"}
47 }
48 },
49 "editButton": {
50 "module": "montage/ui/button.reel",
51 "name": "Button",
52 "properties": {
53 "element": {"#": "edit-button"},
54 "identifier": "editButton",
55 "label": " "
56 },
57 "listeners": [{
58 "type": "action",
59 "listener": {"@": "owner"}
60 }]
61
62 },
63 "disableButton": {
64 "module": "montage/ui/button.reel",
65 "name": "Button",
66 "properties": {
67 "element": {"#": "disable-button"},
68 "identifier": "disableButton",
69 "label": "Disable"
70 },
71 "listeners": [{
72 "type": "action",
73 "listener": {"@": "owner"}
74 }]
75
76 },
77 "deleteButton": {
78 "module": "montage/ui/button.reel",
79 "name": "Button",
80 "properties": {
81 "element": {"#": "delete-button"},
82 "identifier": "deleteButton",
83 "label": "Delete"
84 },
85 "listeners": [{
86 "type": "action",
87 "listener": {"@": "owner"}
88 }]
89
90 }
91 }
92 </script>
93</head>
94<body>
95<div data-montage-id="style-sheet-container" class="style-sheet-container">
96 <div class="ss-icon"></div>
97 <!--<div id="disable-checkbox"></div>-->
98 <span data-montage-id="sheet-name"></span>
99 <label>Media:</label>
100 <div data-montage-id="media-input"></div>
101
102 <div data-montage-id="style-sheet-edit" class="style-sheet-edit">
103
104 <button data-montage-id="edit-button" class="ss-edit-button"></button>
105 <button data-montage-id="delete-button" class="ss-delete-button nj-skinned"></button>
106 <button data-montage-id="disable-button" class="ss-disable-button nj-skinned"></button>
107
108 </div>
109</div>
110</body>
111</html> \ No newline at end of file