aboutsummaryrefslogtreecommitdiff
path: root/node_modules/montage/ui/tabs.reel/tabs.html
diff options
context:
space:
mode:
authorPierre Frisch2011-12-22 07:25:50 -0800
committerValerio Virgillito2012-01-27 11:18:17 -0800
commitb89a7ee8b956c96a1dcee995ea840feddc5d4b27 (patch)
tree0f3136ab0ecdbbbed6a83576581af0a53124d6f1 /node_modules/montage/ui/tabs.reel/tabs.html
parent2401f05d1f4b94d45e4568b81fc73e67b969d980 (diff)
downloadninja-b89a7ee8b956c96a1dcee995ea840feddc5d4b27.tar.gz
First commit of Ninja to ninja-internal
Signed-off-by: Valerio Virgillito <rmwh84@motorola.com>
Diffstat (limited to 'node_modules/montage/ui/tabs.reel/tabs.html')
-rwxr-xr-xnode_modules/montage/ui/tabs.reel/tabs.html80
1 files changed, 80 insertions, 0 deletions
diff --git a/node_modules/montage/ui/tabs.reel/tabs.html b/node_modules/montage/ui/tabs.reel/tabs.html
new file mode 100755
index 00000000..ad51e254
--- /dev/null
+++ b/node_modules/montage/ui/tabs.reel/tabs.html
@@ -0,0 +1,80 @@
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 <title></title>
10 <link rel="stylesheet" type="text/css" href="tabs.css">
11 <script type="text/montage-serialization">
12{
13 "navController": {
14 "name": "ArrayController",
15 "module": "montage/ui/controller/array-controller",
16 "properties": {
17 "selectObjectsOnAddition": true,
18 "automaticallyOrganizeObjects": true
19 },
20 "bindings": {
21 "content": {
22 "boundObject": {"@": "owner"},
23 "boundObjectPropertyPath": "tabs",
24 "oneway": true
25 }
26 }
27 },
28
29 "repetition1": {
30 "module": "montage/ui/repetition.reel",
31 "name": "Repetition",
32 "properties": {
33 "element": {
34 "#": "tab-list"
35 },
36 "isSelectionEnabled": true,
37 "contentController": {"@": "navController"}
38 }
39 },
40
41 "owner": {
42 "module": "montage/ui/tabs.reel",
43 "name": "Tabs",
44 "properties": {
45 "element": {
46 "#": "tabs-nav"
47 },
48 "navController": {
49 "@": "navController"
50 },
51 "_repetition": {
52 "@": "repetition1"
53 },
54 "_indicator": {
55 "#": "montage-tabs-indicator"
56 }
57 },
58 "bindings": {
59 "selectedTabs": {
60 "boundObject": {"@": "navController"},
61 "boundObjectPropertyPath": "selectedObjects",
62 "oneway": true
63 }
64 }
65 }
66}
67 </script>
68
69 </head>
70<body>
71
72 <div id='tabs-nav' class='montage-tabs montage-container'>
73 <div id="montage-tabs-indicator" class="montage-tabs-indicator" style="display: none;"></div>
74 <ul id="tab-list" class='montage-tabs-list montage-clearfix'>
75 <li></li>
76 </ul>
77 </div>
78
79</body>
80</html>