diff options
Diffstat (limited to 'js/io/ui/new-file-dialog/new-file-options-navigator.reel/new-file-options-navigator.html')
-rwxr-xr-x | js/io/ui/new-file-dialog/new-file-options-navigator.reel/new-file-options-navigator.html | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/js/io/ui/new-file-dialog/new-file-options-navigator.reel/new-file-options-navigator.html b/js/io/ui/new-file-dialog/new-file-options-navigator.reel/new-file-options-navigator.html new file mode 100755 index 00000000..d4043658 --- /dev/null +++ b/js/io/ui/new-file-dialog/new-file-options-navigator.reel/new-file-options-navigator.html | |||
@@ -0,0 +1,62 @@ | |||
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="new-file-options-navigator.css"> | ||
11 | <script type="text/montage-serialization"> | ||
12 | { | ||
13 | "newFileLocation":{ | ||
14 | "module": "js/io/ui/new-file-dialog/new-file-location.reel", | ||
15 | "name": "NewFileLocation", | ||
16 | "properties": { | ||
17 | "element": {"#": "right-bottom"} | ||
18 | } | ||
19 | }, | ||
20 | |||
21 | "owner":{ | ||
22 | "module": "js/io/ui/new-file-dialog/new-file-options-navigator.reel", | ||
23 | "name": "NewFileOptionsNavigator", | ||
24 | "properties": { | ||
25 | "element": {"#": "newfile"}, | ||
26 | "projectTypeTree": {"#": "projectTypeTree"}, | ||
27 | "cancelButton": {"#": "cancelButton"}, | ||
28 | "okButton": {"#": "okButton"}, | ||
29 | "templateIcons": {"#": "templateIcons"}, | ||
30 | "templatesContainer": {"#": "right-top"}, | ||
31 | "locationSelection": {"#": "right-bottom"}, | ||
32 | "newFileLocation": {"@": "newFileLocation"}, | ||
33 | "error": {"#": "error"} | ||
34 | } | ||
35 | } | ||
36 | } | ||
37 | </script> | ||
38 | </head> | ||
39 | <body> | ||
40 | <div id="newfile" class="newfile"> | ||
41 | <div class="title">Create New File</div> | ||
42 | <div class="container left-nav"> | ||
43 | <div class="projectTypeHeader"><span>Choose Type</span></div> | ||
44 | <div id="projectTypeTree" class="projectTypeTree"></div> | ||
45 | </div> | ||
46 | <div class="container right-nav"> | ||
47 | <div id="right-top" class="right-top"> | ||
48 | <div id="templateIcons" class="templateIcons" style="display:block;"></div> | ||
49 | </div> | ||
50 | <div id="right-bottom" class="right-bottom"> | ||
51 | <div class="templateIcon">templateIcon</div> | ||
52 | <div class="selections">selections</div> | ||
53 | </div> | ||
54 | </div> | ||
55 | <div class="errorMsg"><span id="error" class="error"></span></div> | ||
56 | <div class="buttons"> | ||
57 | <button id="cancelButton" value="CANCEL" class="nj-skinned cancelButton">Cancel</button> | ||
58 | <button id="okButton" value="OK" disabled="true" class="nj-skinned okButton">Ok</button> | ||
59 | </div> | ||
60 | </div> | ||
61 | </body> | ||
62 | </html> \ No newline at end of file | ||