aboutsummaryrefslogtreecommitdiff
path: root/node_modules/montage/ui/loading-panel.reel/loading-panel.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/loading-panel.reel/loading-panel.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/loading-panel.reel/loading-panel.html')
-rwxr-xr-xnode_modules/montage/ui/loading-panel.reel/loading-panel.html89
1 files changed, 89 insertions, 0 deletions
diff --git a/node_modules/montage/ui/loading-panel.reel/loading-panel.html b/node_modules/montage/ui/loading-panel.reel/loading-panel.html
new file mode 100755
index 00000000..ccd6d9bd
--- /dev/null
+++ b/node_modules/montage/ui/loading-panel.reel/loading-panel.html
@@ -0,0 +1,89 @@
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 <title>Loading Panel</title>
11
12 <link rel="stylesheet" href="loading-panel.css">
13
14 <script type="text/montage-serialization">
15 {
16 "owner": {
17 "module": "montage/ui/loading-panel.reel",
18 "name": "LoadingPanel",
19 "properties": {
20 "element": {"#": "loadingPanel"}
21 }
22 },
23
24 "loadingIndicator": {
25 "module": "montage/ui/progress.reel",
26 "name": "Progress",
27 "properties": {
28 "element": {"#": "loadingIndicator"},
29 "loading": true
30 },
31 "bindings": {
32 "value": {
33 "boundObject": {"@": "owner"},
34 "boundObjectPropertyPath": "initializedModuleCount",
35 "oneway": true
36 },
37 "maximumValue": {
38 "boundObject": {"@": "owner"},
39 "boundObjectPropertyPath": "requiredModuleCount",
40 "oneway": true
41 }
42 }
43 },
44
45 "loadedCount": {
46 "module": "montage/ui/dynamic-text.reel",
47 "name": "DynamicText",
48 "properties": {
49 "element": {"#": "loadedCount"}
50 },
51 "bindings": {
52 "value": {
53 "boundObject": {"@": "owner"},
54 "boundObjectPropertyPath": "initializedModuleCount",
55 "oneway": true
56 }
57 }
58 },
59
60 "requiredCount": {
61 "module": "montage/ui/dynamic-text.reel",
62 "name": "DynamicText",
63 "properties": {
64 "element": {"#": "requiredCount"}
65 },
66 "bindings": {
67 "value": {
68 "boundObject": {"@": "owner"},
69 "boundObjectPropertyPath": "requiredModuleCount",
70 "oneway": true
71 }
72 }
73 }
74
75 }
76 </script>
77
78</head>
79<body>
80
81 <div id="loadingPanel" class="montage-loading-panel">
82 <div id="loadingIndicator" class="loadingIndicator"></div>
83 <div id="loadingCount" class="loadingCount">
84 <span id="loadedCount" class="loadedCount">0</span><span class="divider">/</span><span id="requiredCount" class="requiredCount">0</span>
85 </div>
86 </div>
87
88</body>
89</html>