diff options
author | Jose Antonio Marquez | 2012-06-26 13:40:44 -0700 |
---|---|---|
committer | Jose Antonio Marquez | 2012-06-26 13:40:44 -0700 |
commit | 81747f839bf5d176a15511303f7d2a0e4028e5bb (patch) | |
tree | 5afab7fb834f9df27d2bf35f6414a906c27ec598 /js/panels/objects/objects-panel.reel/objects-panel.html | |
parent | 9ebf80d943b894242d90cf62bc3078c6a83041ad (diff) | |
parent | 87a8b62f71bb72274c3dd1fa389e88c12d482ebb (diff) | |
download | ninja-81747f839bf5d176a15511303f7d2a0e4028e5bb.tar.gz |
Merge branch 'refs/heads/Ninja-Internal' into Color
Diffstat (limited to 'js/panels/objects/objects-panel.reel/objects-panel.html')
-rw-r--r-- | js/panels/objects/objects-panel.reel/objects-panel.html | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/js/panels/objects/objects-panel.reel/objects-panel.html b/js/panels/objects/objects-panel.reel/objects-panel.html new file mode 100644 index 00000000..17f414e8 --- /dev/null +++ b/js/panels/objects/objects-panel.reel/objects-panel.html | |||
@@ -0,0 +1,58 @@ | |||
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="objects-panel.css"> | ||
11 | |||
12 | <script type="text/montage-serialization"> | ||
13 | { | ||
14 | "owner": { | ||
15 | "prototype": "js/panels/objects/objects-panel.reel", | ||
16 | "properties": { | ||
17 | "element": {"#": "objects-panel"} | ||
18 | } | ||
19 | }, | ||
20 | "repetition" : { | ||
21 | "prototype": "montage/ui/repetition.reel", | ||
22 | "properties": { | ||
23 | "element": {"#": "list"}, | ||
24 | "contentController": {"@": "arrayController"} | ||
25 | } | ||
26 | }, | ||
27 | "arrayController": { | ||
28 | "prototype": "montage/ui/controller/array-controller", | ||
29 | "bindings": { | ||
30 | "content": {"<-": "@owner.objects"} | ||
31 | } | ||
32 | }, | ||
33 | "objectComponent": { | ||
34 | "prototype": "js/panels/objects/object.reel", | ||
35 | "properties": { | ||
36 | "element": {"#": "list-item"} | ||
37 | }, | ||
38 | "bindings": { | ||
39 | "sourceObject" : {"<-": "@repetition.objectAtCurrentIteration"}, | ||
40 | "identifier" : {"<-": "@repetition.objectAtCurrentIteration.identifier"} | ||
41 | } | ||
42 | } | ||
43 | |||
44 | } | ||
45 | </script> | ||
46 | |||
47 | </head> | ||
48 | <body> | ||
49 | |||
50 | |||
51 | <section data-montage-id="objects-panel" class="objects-panel"> | ||
52 | <ul data-montage-id="list" class="objects-list"> | ||
53 | <li data-montage-id="list-item" class="list-item"></li> | ||
54 | </ul> | ||
55 | </section> | ||
56 | |||
57 | </body> | ||
58 | </html> | ||