aboutsummaryrefslogtreecommitdiff
path: root/js/components/toolbar.reel/toolbar.html
diff options
context:
space:
mode:
authorhwc4872012-05-31 17:11:08 -0700
committerhwc4872012-05-31 17:11:08 -0700
commit1c445cf5d905f79937998cf2f1115594ea8c1074 (patch)
tree35271ad7ffec86fde9102af3dd954fa3a2974582 /js/components/toolbar.reel/toolbar.html
parent335ce503996e3ccbd2909086328d0a31fbd03370 (diff)
parent6042bdc5f2aada4412912fd01602d32c9088dc26 (diff)
downloadninja-1c445cf5d905f79937998cf2f1115594ea8c1074.tar.gz
Merge branch 'master' of github.com:Motorola-Mobility/ninja-internal into Textures
Conflicts: js/io/system/ninjalibrary.json
Diffstat (limited to 'js/components/toolbar.reel/toolbar.html')
-rw-r--r--js/components/toolbar.reel/toolbar.html53
1 files changed, 53 insertions, 0 deletions
diff --git a/js/components/toolbar.reel/toolbar.html b/js/components/toolbar.reel/toolbar.html
new file mode 100644
index 00000000..51e7ebec
--- /dev/null
+++ b/js/components/toolbar.reel/toolbar.html
@@ -0,0 +1,53 @@
1<!DOCTYPE html>
2<!-- <copyright>
3This file contains proprietary software owned by Motorola Mobility, Inc.<br/>
4No 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 href="toolbar.css" rel="stylesheet" type="text/css">
11 <script type="text/montage-serialization">
12 {
13 "owner": {
14 "prototype" : "js/components/toolbar.reel",
15 "properties" : {
16 "element" : {"#" : "toolbar-container"},
17 "repetition": {"@": "buttonList" }
18 }
19 },
20
21 "buttonList": {
22 "module": "montage/ui/repetition.reel",
23 "name": "Repetition",
24 "properties": {
25 "element": {"#": "repetition"}
26 },
27 "bindings": {
28 "objects": {"<-": "@owner.buttons"}
29 }
30 },
31
32 "button": {
33 "prototype": "js/components/toolbar.reel/toolbar-button",
34 "properties": {
35 "element": {"#": "button" },
36 "label": " "
37 },
38 "bindings": {
39 "label": {"<-": "@buttonList.objectAtCurrentIteration.title"},
40 "sourceObject": {"<-": "@buttonList.objectAtCurrentIteration"}
41 }
42 }
43 }
44 </script>
45</head>
46<body>
47<div data-montage-id="toolbar-container" class="toolbar-container">
48 <ul data-montage-id="repetition">
49 <li><button data-montage-id="button" class="toolbar-button"></button></li>
50 </ul>
51</div>
52</body>
53</html> \ No newline at end of file