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.html79
1 files changed, 79 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..b77f8e27
--- /dev/null
+++ b/js/stage/binding-view.reel/binding-view.html
@@ -0,0 +1,79 @@
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 "name": {
37 }
38 },
39 "nonVisualRepeater": {
40 "prototype": "montage/ui/repetition.reel",
41 "properties": {
42 "element": {"#": "nonVisualRepeater"}
43 },
44 "bindings": {
45 "objects": {"<-": "@owner.nonVisualComponents"}
46 }
47 },
48 "nonVisualComponent": {
49 "prototype": "js/stage/binding-view.reel/non-visual-component.reel",
50 "properties": {
51 "element": {"#": "nonVisualComponent"}
52 },
53 "bindings": {
54 "objectName": {"<-": "@hudRepeater.objectAtCurrentIteration.objectName"},
55 "objectImage": {"<-": "@hudRepeater.objectAtCurrentIteration.objectImage"}
56 }
57 }
58 }
59 </script>
60
61</head>
62<body>
63
64
65 <section data-montage-id="bindingView" class="bindingView">
66 <div data-montage-id="hudRepeater" class="hudRepetition">
67 <div data-montage-id="hud">
68
69 </div>
70 </div>
71 <div data-montage-id="nonVisualRepeater">
72 <div data-montage-id="nonVisualComponent">
73
74 </div>
75 </div>
76 </section>
77
78</body>
79</html>