aboutsummaryrefslogtreecommitdiff
path: root/js/panels/Panel.reel/Panel.html
diff options
context:
space:
mode:
authorPierre Frisch2011-12-22 07:25:50 -0800
committerValerio Virgillito2012-01-27 11:18:17 -0800
commitb89a7ee8b956c96a1dcee995ea840feddc5d4b27 (patch)
tree0f3136ab0ecdbbbed6a83576581af0a53124d6f1 /js/panels/Panel.reel/Panel.html
parent2401f05d1f4b94d45e4568b81fc73e67b969d980 (diff)
downloadninja-b89a7ee8b956c96a1dcee995ea840feddc5d4b27.tar.gz
First commit of Ninja to ninja-internal
Signed-off-by: Valerio Virgillito <rmwh84@motorola.com>
Diffstat (limited to 'js/panels/Panel.reel/Panel.html')
-rw-r--r--js/panels/Panel.reel/Panel.html62
1 files changed, 62 insertions, 0 deletions
diff --git a/js/panels/Panel.reel/Panel.html b/js/panels/Panel.reel/Panel.html
new file mode 100644
index 00000000..dc76d871
--- /dev/null
+++ b/js/panels/Panel.reel/Panel.html
@@ -0,0 +1,62 @@
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 <script type="text/montage-serialization">
10 {
11 "resizer1": {
12 "module": "js/panels/Resizer",
13 "name": "Resizer",
14 "properties": {
15 "element": {"#": "resizeBar"},
16 "panel": {"#": "panel"},
17 "isVertical": true
18 }
19 },
20
21 "slot1": {
22 "module": "montage/ui/slot.reel",
23 "name": "Slot",
24 "properties": {
25 "element": {"#": "panelObject"}
26 }
27 },
28
29 "owner": {
30 "module": "js/panels/Panel.reel",
31 "name": "Panel",
32 "properties": {
33 "element": {"#": "panel"},
34 "resizer": {"@": "resizer1"},
35 "panelContent": {"@": "slot1"}
36
37 }
38 }
39 }
40 </script>
41
42 </head>
43<body>
44
45<article id="panel">
46 <div id="head" class="head">
47 <span class="arrowIcon"></span>
48 <span class="panelTitle">Panel</span>
49 <span class="closeBtn"></span>
50 </div>
51 <div class="panelBody">
52 <div class="panelBodyContent">
53 <div id="panelObject" class="panelObjects">
54
55 </div>
56 </div>
57 </div>
58 <div id="resizeBar" class="resizeBar"></div>
59</article>
60
61</body>
62</html> \ No newline at end of file