diff options
Diffstat (limited to 'js/stage/binding-view.reel/binding-view.html')
-rwxr-xr-x | js/stage/binding-view.reel/binding-view.html | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/js/stage/binding-view.reel/binding-view.html b/js/stage/binding-view.reel/binding-view.html new file mode 100755 index 00000000..9eb338d8 --- /dev/null +++ b/js/stage/binding-view.reel/binding-view.html | |||
@@ -0,0 +1,74 @@ | |||
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> | ||
8 | <head> | ||
9 | <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | ||
10 | <link rel="stylesheet" type="text/css" href="binding-view.css"> | ||
11 | |||
12 | <script type="text/montage-serialization"> | ||
13 | { | ||
14 | "owner": { | ||
15 | "prototype": "js/stage/binding-view.reel", | ||
16 | "properties": { | ||
17 | "element": {"#": "bindingView"}, | ||
18 | "hudRepeater": {"@": "hudRepeater"}, | ||
19 | "objectsTray": {"@": "objectsTray"} | ||
20 | } | ||
21 | }, | ||
22 | "hudRepeater": { | ||
23 | "prototype": "montage/ui/repetition.reel", | ||
24 | "properties": { | ||
25 | "element": {"#": "hudRepeater"} | ||
26 | }, | ||
27 | "bindings": { | ||
28 | "objects": {"<-": "@owner.boundComponents"} | ||
29 | } | ||
30 | }, | ||
31 | "objectsTray" : { | ||
32 | "prototype": "js/stage/objects-tray.reel", | ||
33 | "properties": { | ||
34 | "element": {"#": "objects-tray" } | ||
35 | } | ||
36 | }, | ||
37 | "hud": { | ||
38 | "prototype": "js/stage/binding-view.reel/binding-hud.reel", | ||
39 | "properties": { | ||
40 | "element": {"#" : "hud"} | ||
41 | }, | ||
42 | "bindings": { | ||
43 | "userComponent": {"<-": "@hudRepeater.objectAtCurrentIteration"} | ||
44 | }, | ||
45 | "listeners": [ | ||
46 | { | ||
47 | "type": "resizeMove", | ||
48 | "listener": {"@": "owner"} | ||
49 | } | ||
50 | ] | ||
51 | } | ||
52 | } | ||
53 | </script> | ||
54 | |||
55 | </head> | ||
56 | <body> | ||
57 | |||
58 | |||
59 | <section data-montage-id="bindingView" class="bindingView"> | ||
60 | |||
61 | <div data-montage-id="hudRepeater" class="hudRepeater"> | ||
62 | <div data-montage-id="hud"> | ||
63 | |||
64 | </div> | ||
65 | </div> | ||
66 | |||
67 | <div class="objects-tray-container"> | ||
68 | <div data-montage-id="objects-tray" ></div> | ||
69 | </div> | ||
70 | |||
71 | </section> | ||
72 | |||
73 | </body> | ||
74 | </html> | ||