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