diff options
Diffstat (limited to 'js/io/workflow/save-as-dialog.reel/save-as-dialog.html')
-rw-r--r-- | js/io/workflow/save-as-dialog.reel/save-as-dialog.html | 86 |
1 files changed, 0 insertions, 86 deletions
diff --git a/js/io/workflow/save-as-dialog.reel/save-as-dialog.html b/js/io/workflow/save-as-dialog.reel/save-as-dialog.html deleted file mode 100644 index eca6801f..00000000 --- a/js/io/workflow/save-as-dialog.reel/save-as-dialog.html +++ /dev/null | |||
@@ -1,86 +0,0 @@ | |||
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="save-as-dialog.css"> | ||
11 | <script type="text/montage-serialization"> | ||
12 | { | ||
13 | "okButton": { | ||
14 | "module": "montage/ui/button.reel", | ||
15 | "name": "Button", | ||
16 | "properties": { | ||
17 | "element": {"#": "okButton"}, | ||
18 | "identifier": "okButton" | ||
19 | }, | ||
20 | "listeners": [ | ||
21 | { | ||
22 | "type": "action", | ||
23 | "listener": {"@": "owner"} | ||
24 | } | ||
25 | ] | ||
26 | }, | ||
27 | |||
28 | "cancelButton": { | ||
29 | "module": "montage/ui/button.reel", | ||
30 | "name": "Button", | ||
31 | "properties": { | ||
32 | "element": {"#": "cancelButton"}, | ||
33 | "identifier": "cancelButton" | ||
34 | }, | ||
35 | "listeners": [ | ||
36 | { | ||
37 | "type": "action", | ||
38 | "listener": {"@": "owner"} | ||
39 | } | ||
40 | ] | ||
41 | }, | ||
42 | |||
43 | "fileInputField":{ | ||
44 | "module": "js/components/ui/FilePicker/file-input-field.reel", | ||
45 | "name": "FileInputField", | ||
46 | "properties": { | ||
47 | "element": {"#": "fileInputField"} | ||
48 | } | ||
49 | }, | ||
50 | |||
51 | "owner":{ | ||
52 | "module": "js/io/workflow/newFileDialog/new-file-location.reel", | ||
53 | "name": "SaveAsDialog", | ||
54 | "properties": { | ||
55 | "element": {"#": "saveAsDialog"}, | ||
56 | "fileInputField": {"@": "fileInputField"}, | ||
57 | "newFileName": {"#": "newFileName"}, | ||
58 | "error":{"#": "error"}, | ||
59 | "okButton":{"#": "okButton"} | ||
60 | } | ||
61 | } | ||
62 | } | ||
63 | </script> | ||
64 | </head> | ||
65 | <body> | ||
66 | <div id="saveAsDialog" class="saveAsDialog"> | ||
67 | <div class="title">Save As</div> | ||
68 | <div class="locationSelection"> | ||
69 | <div class="filename"> | ||
70 | <span class="nameText">Save As :</span> | ||
71 | <input id="newFileName" class="nj-skinned newFileName" type="search" value="" /> | ||
72 | </div> | ||
73 | <div> | ||
74 | <span>Location :</span> | ||
75 | <div id="fileInputField"></div> | ||
76 | </div> | ||
77 | </div> | ||
78 | <div class="errorMsg"><span id="error" class="error"></span></div> | ||
79 | <div class="buttons"> | ||
80 | <input id="cancelButton" type="button" value="CANCEL" class="cancelButton" /> | ||
81 | <input id="okButton" disabled="true" type="button" value="OK" class="okButton" /> | ||
82 | </div> | ||
83 | |||
84 | </div> | ||
85 | </body> | ||
86 | </html> \ No newline at end of file | ||