aboutsummaryrefslogtreecommitdiff
path: root/node_modules/montage/ui/popup/alert.reel/alert.html
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/montage/ui/popup/alert.reel/alert.html')
-rwxr-xr-xnode_modules/montage/ui/popup/alert.reel/alert.html120
1 files changed, 120 insertions, 0 deletions
diff --git a/node_modules/montage/ui/popup/alert.reel/alert.html b/node_modules/montage/ui/popup/alert.reel/alert.html
new file mode 100755
index 00000000..f71da981
--- /dev/null
+++ b/node_modules/montage/ui/popup/alert.reel/alert.html
@@ -0,0 +1,120 @@
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="alert.css">
11 <script type="text/montage-serialization">
12{
13 "dynamictext1": {
14 "module": "montage/ui/dynamic-text.reel",
15 "name": "DynamicText",
16 "properties": {
17 "element": {
18 "#": "title"
19 }
20 },
21 "bindings": {
22 "value": {
23 "boundObject": {
24 "@": "owner"
25 },
26 "boundObjectPropertyPath": "title",
27 "oneway": true
28 }
29 }
30 },
31 "dynamictext2": {
32 "module": "montage/ui/dynamic-text.reel",
33 "name": "DynamicText",
34 "properties": {
35 "element": {
36 "#": "msg"
37 }
38 },
39 "bindings": {
40 "value": {
41 "boundObject": {
42 "@": "owner"
43 },
44 "boundObjectPropertyPath": "msg",
45 "oneway": true
46 }
47 }
48 },
49 "dynamictext3": {
50 "module": "montage/ui/dynamic-text.reel",
51 "name": "DynamicText",
52 "properties": {
53 "element": {
54 "#": "msg-detail"
55 }
56 },
57 "bindings": {
58 "value": {
59 "boundObject": {
60 "@": "owner"
61 },
62 "boundObjectPropertyPath": "details",
63 "oneway": true
64 }
65 }
66 },
67 "button1": {
68 "module": "montage/ui/button.reel",
69 "name": "Button",
70 "properties": {
71 "identifier": "Ok",
72 "element": {
73 "#": "action-ok"
74 }
75 },
76 "listeners": [
77 {
78 "type": "action",
79 "listener": {
80 "@": "owner"
81 }
82 }
83 ]
84 },
85 "owner": {
86 "module": "montage/ui/popup/alert.reel",
87 "name": "Alert",
88 "properties": {
89 "element": {
90 "#": "alert-container"
91 }
92 }
93 }
94}
95 </script>
96
97
98 </head>
99 <body>
100 <div id="alert-container" class="montage-alert-dialog">
101
102 <div class="montage-popup-header">
103 <h3 id="title" class="title"></h3>
104 </div>
105
106 <div class="montage-alert-content">
107 <div id="msg" class="msg"></div>
108 <div id="msg-detail" class="msg-detail"></div>
109 </div>
110
111 <div class="montage-popup-footer">
112 <div class="montage-alert-actions">
113 <div class="submit" id="action-ok">OK</div>
114 </div>
115 <div class="clearfix"></div>
116 </div>
117
118 </div>
119 </body>
120</html>