diff options
author | Ananya Sen | 2012-05-31 10:13:40 -0700 |
---|---|---|
committer | Ananya Sen | 2012-05-31 10:13:40 -0700 |
commit | 286457b4f23974277274ba388afd283e8aa085cb (patch) | |
tree | c21bf791e7c4f572d12f97987ea6b89e74da67fe /js/panels/css-panel/css-panel.reel/css-panel.html | |
parent | 4d9b481c58090e8f1fc7b0e9d73a81b0f49cccc8 (diff) | |
parent | d49c909cff7f0c5e5d0b127ad84a2fefc6677dc6 (diff) | |
download | ninja-286457b4f23974277274ba388afd283e8aa085cb.tar.gz |
Merge branch 'refs/heads/ninja-internal-master' into cut-copy-paste
Conflicts:
js/controllers/styles-controller.js
Signed-off-by: Ananya Sen <Ananya.Sen@motorola.com>
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 | 56 |
1 files changed, 56 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..42dca8a2 --- /dev/null +++ b/js/panels/css-panel/css-panel.reel/css-panel.html | |||
@@ -0,0 +1,56 @@ | |||
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 | "prototype" : "js/panels/css-panel/css-panel.reel", | ||
15 | "properties" : { | ||
16 | "element" : {"#" : "container"}, | ||
17 | "styleSheetsView": {"@": "styleSheetsView"}, | ||
18 | "stylesViewContainer": {"@": "stylesViewContainer"} | ||
19 | } | ||
20 | }, | ||
21 | |||
22 | "styleSheetsView": { | ||
23 | "prototype" : "js/panels/css-panel/style-sheets-view.reel", | ||
24 | "properties": { | ||
25 | "element": {"#": "style-sheet-view" }, | ||
26 | "documentNameLabel": {"#": "document-name" } | ||
27 | } | ||
28 | }, | ||
29 | "stylesViewContainer": { | ||
30 | "prototype" : "js/panels/css-panel/styles-view-container.reel", | ||
31 | "properties": { | ||
32 | "element": {"#": "styles-view-container" }, | ||
33 | "selectionName": {"@": "selectionName" } | ||
34 | } | ||
35 | }, | ||
36 | "selectionName" : { | ||
37 | "prototype": "montage/ui/dynamic-text.reel", | ||
38 | "properties": { | ||
39 | "element": {"#":"selection-name"} | ||
40 | }, | ||
41 | "bindings": { | ||
42 | "value" : {"<-": "@stylesViewContainer.selectionNameLabelText" } | ||
43 | } | ||
44 | } | ||
45 | } | ||
46 | </script> | ||
47 | </head> | ||
48 | <body> | ||
49 | <section data-montage-id="container" class="css-panel"> | ||
50 | <h3>Style Sheets <span data-montage-id="document-name" class="document-name"></span></h3> | ||
51 | <div data-montage-id="style-sheet-view"></div> | ||
52 | <h3>Styles <span data-montage-id="selection-name" class="selection-name"></span></h3> | ||
53 | <div data-montage-id="styles-view-container"></div> | ||
54 | </section> | ||
55 | </body> | ||
56 | </html> \ No newline at end of file | ||