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/layout/bread-crumb.reel/bread-crumb.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/layout/bread-crumb.reel/bread-crumb.html')
-rw-r--r-- | js/components/layout/bread-crumb.reel/bread-crumb.html | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/js/components/layout/bread-crumb.reel/bread-crumb.html b/js/components/layout/bread-crumb.reel/bread-crumb.html new file mode 100644 index 00000000..67328479 --- /dev/null +++ b/js/components/layout/bread-crumb.reel/bread-crumb.html | |||
@@ -0,0 +1,70 @@ | |||
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 lang="en"> | ||
8 | <head> | ||
9 | <meta http-equiv="content-type" content="text/html; charset=utf-8" /> | ||
10 | <link rel="stylesheet" type="text/css" href="bread-crumb.css"> | ||
11 | |||
12 | |||
13 | <script type="text/montage-serialization"> | ||
14 | { | ||
15 | "owner": { | ||
16 | "module": "js/components/layout/bread-crumb.reel", | ||
17 | "name": "Breadcrumb", | ||
18 | "properties": { | ||
19 | "element": {"#": "breadcrumb_trail"}, | ||
20 | "button" : {"@":"breadCrumbButton"}, | ||
21 | "stylerepetition" : {"@":"repetition1"} | ||
22 | |||
23 | } | ||
24 | }, | ||
25 | |||
26 | "breadCrumbButton": { | ||
27 | "module": "js/components/layout/bread-crumb-button.reel", | ||
28 | "name": "BreadcrumbButton", | ||
29 | "properties": { | ||
30 | "element": {"#": "breadcrumb_button"} | ||
31 | }, | ||
32 | "bindings": { | ||
33 | "data": { | ||
34 | "boundObject": {"@": "repetition1"}, | ||
35 | "boundObjectPropertyPath": "objectAtCurrentIteration", | ||
36 | "oneway": true | ||
37 | } | ||
38 | } | ||
39 | }, | ||
40 | |||
41 | "repetition1": { | ||
42 | "module": "montage/ui/repetition.reel", | ||
43 | "name": "Repetition", | ||
44 | "properties": { | ||
45 | "element": {"#": "breadcrumb_container"} | ||
46 | }, | ||
47 | "bindings": { | ||
48 | "objects": { | ||
49 | "boundObject": {"@": "owner"}, | ||
50 | "boundObjectPropertyPath": "containerElements", | ||
51 | "oneway": true | ||
52 | } | ||
53 | } | ||
54 | } | ||
55 | |||
56 | |||
57 | } | ||
58 | </script> | ||
59 | |||
60 | </head> | ||
61 | <body> | ||
62 | |||
63 | <div id="breadcrumb_trail" class="breadcrumbtrail"> | ||
64 | <div id="breadcrumb_container" class="bread_crumb"> | ||
65 | <div id="breadcrumb_button" class="toolbutton"></div> | ||
66 | </div> | ||
67 | </div> | ||
68 | |||
69 | </body> | ||
70 | </html> \ No newline at end of file | ||