diff options
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 | ||