diff options
author | Pierre Frisch | 2011-12-22 07:25:50 -0800 |
---|---|---|
committer | Valerio Virgillito | 2012-01-27 11:18:17 -0800 |
commit | b89a7ee8b956c96a1dcee995ea840feddc5d4b27 (patch) | |
tree | 0f3136ab0ecdbbbed6a83576581af0a53124d6f1 /js/components/ui/icon-list-basic/iconsList.reel/iconsList.html | |
parent | 2401f05d1f4b94d45e4568b81fc73e67b969d980 (diff) | |
download | ninja-b89a7ee8b956c96a1dcee995ea840feddc5d4b27.tar.gz |
First commit of Ninja to ninja-internal
Signed-off-by: Valerio Virgillito <rmwh84@motorola.com>
Diffstat (limited to 'js/components/ui/icon-list-basic/iconsList.reel/iconsList.html')
-rw-r--r-- | js/components/ui/icon-list-basic/iconsList.reel/iconsList.html | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/js/components/ui/icon-list-basic/iconsList.reel/iconsList.html b/js/components/ui/icon-list-basic/iconsList.reel/iconsList.html new file mode 100644 index 00000000..50a1d61d --- /dev/null +++ b/js/components/ui/icon-list-basic/iconsList.reel/iconsList.html | |||
@@ -0,0 +1,62 @@ | |||
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="iconsList.css"> | ||
11 | <script type="text/montage-serialization"> | ||
12 | { | ||
13 | "pickerIcon": { | ||
14 | "module" : "js/components/ui/icon-list-basic/icon.reel", | ||
15 | "name": "Icon", | ||
16 | "properties": { | ||
17 | "element": {"#": "icon"} | ||
18 | }, | ||
19 | "bindings": { | ||
20 | "icondata": { | ||
21 | "boundObject": {"@": "repetition1"}, | ||
22 | "boundObjectPropertyPath": "objectAtCurrentIteration", | ||
23 | "oneway": true | ||
24 | } | ||
25 | } | ||
26 | }, | ||
27 | |||
28 | "repetition1" : { | ||
29 | "module": "montage/ui/repetition.reel", | ||
30 | "name": "Repetition", | ||
31 | "properties": { | ||
32 | "element": {"#": "iconsView"} | ||
33 | }, | ||
34 | "bindings": { | ||
35 | "objects": { | ||
36 | "boundObject": {"@": "owner"}, | ||
37 | "boundObjectPropertyPath": "iconsViewDataObject", | ||
38 | "oneway": true | ||
39 | } | ||
40 | } | ||
41 | |||
42 | }, | ||
43 | |||
44 | "owner" : { | ||
45 | "module" : "js/components/ui/icon-list-basic/iconsList.reel", | ||
46 | "name" : "IconsList", | ||
47 | "properties" : { | ||
48 | "element" : {"#": "list"}, | ||
49 | "components": [{"@": "repetition1"}] | ||
50 | } | ||
51 | } | ||
52 | } | ||
53 | </script> | ||
54 | </head> | ||
55 | <body> | ||
56 | <div id="list" class="list"> | ||
57 | <div id="iconsView"> | ||
58 | <div id="icon"></div> | ||
59 | </div> | ||
60 | </div> | ||
61 | </body> | ||
62 | </html> \ No newline at end of file | ||