diff options
author | Ananya Sen | 2012-02-17 14:26:56 -0800 |
---|---|---|
committer | Ananya Sen | 2012-02-17 14:26:56 -0800 |
commit | 2980816130a44cd478b2a9d6606e021efbcebd4a (patch) | |
tree | 762d98ba8852b858c03760f4b9bef294fae6486c /js/panels/presets/content.reel/content.html | |
parent | 96178309ddcdb54c0c451b69ea6fb8cdf76fcf62 (diff) | |
parent | a42c536c2b3209afc058eabd31167bd0aa6f71c8 (diff) | |
download | ninja-2980816130a44cd478b2a9d6606e021efbcebd4a.tar.gz |
Merge branch 'refs/heads/FileIO-jose' into FileIO
Conflicts:
css/ninja.css
js/controllers/document-controller.js
Signed-off-by: Ananya Sen <Ananya.Sen@motorola.com>
Diffstat (limited to 'js/panels/presets/content.reel/content.html')
-rw-r--r-- | js/panels/presets/content.reel/content.html | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/js/panels/presets/content.reel/content.html b/js/panels/presets/content.reel/content.html new file mode 100644 index 00000000..38de2a6d --- /dev/null +++ b/js/panels/presets/content.reel/content.html | |||
@@ -0,0 +1,66 @@ | |||
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="content.css" type="text/css"> | ||
11 | <script type="text/montage-serialization"> | ||
12 | { | ||
13 | "owner": { | ||
14 | "module" : "js/panels/presets/content.reel", | ||
15 | "name" : "Content", | ||
16 | "properties" : { | ||
17 | "element" : {"#" : "presetsPanel"}, | ||
18 | "activeTabIndex": 0, | ||
19 | "tabBar" : {"#": "tab-bar" }, | ||
20 | "tabs" : [ | ||
21 | {"key":"styles", "tab": {"#": "styles" }}, | ||
22 | {"key":"transitions", "tab": {"#": "transitions" }} | ||
23 | ] | ||
24 | } | ||
25 | }, | ||
26 | "substitution": { | ||
27 | "module": "montage/ui/substitution.reel", | ||
28 | "name": "Substitution", | ||
29 | "properties": { | ||
30 | "element": {"#": "librarySlot"}, | ||
31 | "switchComponents": { | ||
32 | "styles": {"@": "stylesLibrary"}, | ||
33 | "transitions": {"@": "transitionsLibrary"} | ||
34 | |||
35 | } | ||
36 | }, | ||
37 | "bindings": { | ||
38 | "switchValue": { | ||
39 | "boundObject": {"@": "owner"}, | ||
40 | "boundObjectPropertyPath": "contentPanel", | ||
41 | "oneway": true | ||
42 | } | ||
43 | } | ||
44 | }, | ||
45 | "stylesLibrary": { | ||
46 | "module": "js/panels/presets/style-presets.reel", | ||
47 | "name": "StylesLibrary" | ||
48 | }, | ||
49 | "transitionsLibrary": { | ||
50 | "module": "js/panels/presets/transitions-presets.reel", | ||
51 | "name": "TransitionsLibrary" | ||
52 | } | ||
53 | |||
54 | } | ||
55 | </script> | ||
56 | </head> | ||
57 | <body> | ||
58 | <section id="presetsPanel" class="presetsPanel"> | ||
59 | <nav id="tab-bar" class="tab-bar"> | ||
60 | <div id="styles">Style Library</div> | ||
61 | <div id="transitions">Transitions Library</div> | ||
62 | </nav> | ||
63 | <div id="librarySlot" class="librarySlot"></div> | ||
64 | </section> | ||
65 | </body> | ||
66 | </html> \ No newline at end of file | ||