Rev 1325 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1294 | dev | 1 | <?xml version="1.0"?> |
2 | |||
3 | <?xml-stylesheet href="chrome://movetofolder/skin/options.css" type="text/css"?> |
||
4 | |||
5 | <?xul-overlay href="chrome://messenger/content/msgFolderPickerOverlay.xul"?> |
||
6 | |||
7 | <dialog xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" |
||
8 | xmlns:nc="http://home.netscape.com/NC-rdf#" |
||
9 | xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" |
||
10 | title="MoveToFolder Options" |
||
11 | onload="onLoadOptions();" |
||
12 | buttons="accept,cancel" |
||
13 | ondialogaccept="return onSaveOptions();"> |
||
14 | |||
15 | <script type="application/x-javascript" src="chrome://movetofolder/content/prefs.js"/> |
||
16 | <script type="application/x-javascript" src="chrome://movetofolder/content/options.js" /> |
||
17 | <script type="application/x-javascript" src="chrome://messenger/content/widgetglue.js"/> |
||
18 | |||
19 | <stringbundleset id="stringbundleset"> |
||
20 | <stringbundle id="bundle_messenger" src="chrome://messenger/locale/messenger.properties"/> |
||
21 | </stringbundleset> |
||
22 | |||
23 | <vbox> |
||
24 | <hbox align="baseline"> |
||
25 | <label value="Folder" control="toFolder"/> |
||
26 | <menulist id="toFolder" class="folderMenuItem" label=" " |
||
27 | context="folderPaneContext" minwidth="170" crop="center" flex="1"> |
||
28 | <menupopup id="toFolderPopup" class="folderLocationPopup" height="400" flex="1" |
||
29 | oncommand="onSelectFolder(this, 'toFolder')"/> |
||
30 | </menulist> |
||
31 | </hbox> |
||
32 | </vbox> |
||
33 | |||
34 | </dialog> |