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.html90
1 files changed, 90 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..152345d4
--- /dev/null
+++ b/js/stage/binding-view.reel/binding-view.html
@@ -0,0 +1,90 @@
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": {
28 "boundObject": {"@": "owner"},
29 "boundObjectPropertyPath": "bindables",
30 "oneway": true
31 }
32 }
33 },
34 "hud": {
35 "prototype": "js/stage/binding-view.reel/binding-hud.reel",
36 "properties": {
37 "element": {"#" : "hud"}
38 }
39 },
40 "nonVisualRepeater": {
41 "prototype": "montage/ui/repetition.reel",
42 "properties": {
43 "element": {"#": "nonVisualRepeater"}
44 },
45 "bindings": {
46 "objects": {
47 "boundObject": {"@": "owner"},
48 "boundObjectPropertyPath": "nonVisualComponents",
49 "oneway": true
50 }
51 }
52 },
53 "nonVisualComponent": {
54 "prototype": "js/stage/binding-view.reel/non-visual-component.reel",
55 "properties": {
56 "element": {"#": "nonVisualComponent"}
57 },
58 "bindings": {
59 "objectName": {
60 "boundObject": {"@": "hudRepeater"},
61 "boundObjectPropertyPath": "objectAtCurrentIteration.objectName",
62 "oneway": true
63 },
64 "objectImage": {
65 "boundObject": {"@": "hudRepeater"},
66 "boundObjectPropertyPath": "objectAtCurrentIteration.objectImage",
67 "oneway": true
68 }
69 }
70 }
71 }
72 </script>
73
74</head>
75<body>
76
77
78 <section data-montage-id="bindingView" class="bindingView">
79 <div data-montage-id="hudRepeater" class="hudRepetition">
80 <div data-montage-id="hud">
81
82 </div>
83 </div>
84 <div data-montage-id="nonVisualRepeater">
85 <div data-montage-id="nonVisualComponent"></div>
86 </div>
87 </section>
88
89</body>
90</html>