aboutsummaryrefslogtreecommitdiff
path: root/js/stage/binding-view.reel/binding-view.html
diff options
context:
space:
mode:
Diffstat (limited to 'js/stage/binding-view.reel/binding-view.html')
-rwxr-xr-xjs/stage/binding-view.reel/binding-view.html82
1 files changed, 82 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..39704e25
--- /dev/null
+++ b/js/stage/binding-view.reel/binding-view.html
@@ -0,0 +1,82 @@
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 }
20 },
21 "hudRepeater": {
22 "prototype": "montage/ui/repetition.reel",
23 "properties": {
24 "element": {"#": "hudRepeater"}
25 },
26 "bindings": {
27 "objects": {"<-": "@owner.bindables"}
28 }
29 },
30 "hud": {
31 "prototype": "js/stage/binding-view.reel/binding-hud.reel",
32 "properties": {
33 "element": {"#" : "hud"}
34 },
35 "bindings": {
36 "title": {"<-": "@hudRepeater.objectAtCurrentIteration.title"},
37 "properties": {"<-": "@hudRepeater.objectAtCurrentIteration.properties"},
38 "x": {"<-": "@hudRepeater.objectAtCurrentIteration.x"},
39 "y": {"<-": "@hudRepeater.objectAtCurrentIteration.y"}
40 }
41 },
42 "nonVisualRepeater": {
43 "prototype": "montage/ui/repetition.reel",
44 "properties": {
45 "element": {"#": "nonVisualRepeater"}
46 },
47 "bindings": {
48 "objects": {"<-": "@owner.nonVisualComponents"}
49 }
50 },
51 "nonVisualComponent": {
52 "prototype": "js/stage/binding-view.reel/non-visual-component.reel",
53 "properties": {
54 "element": {"#": "nonVisualComponent"}
55 },
56 "bindings": {
57 "objectName": {"<-": "@hudRepeater.objectAtCurrentIteration.objectName"},
58 "objectImage": {"<-": "@hudRepeater.objectAtCurrentIteration.objectImage"}
59 }
60 }
61 }
62 </script>
63
64</head>
65<body>
66
67
68 <section data-montage-id="bindingView" class="bindingView">
69 <div data-montage-id="hudRepeater" class="hudRepetition">
70 <div data-montage-id="hud">
71
72 </div>
73 </div>
74 <div data-montage-id="nonVisualRepeater">
75 <div data-montage-id="nonVisualComponent">
76
77 </div>
78 </div>
79 </section>
80
81</body>
82</html>