comparison chrome/content/dialogs/options.xul @ 0:c14d52a3b2fe

initial import
author Yoshiki Yazawa <yaz@honeyplanet.jp>
date Mon, 11 Aug 2008 20:34:21 +0900
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:c14d52a3b2fe
1 <?xml version="1.0"?>
2
3 <?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
4
5 <dialog buttons="accept,cancel"
6 id="tinyurl-options-dialog"
7 ondialogaccept="return tinyurl_saveOptions();"
8 ondialogcancel="return true;"
9 onload="tinyurl_initOptions()"
10 title="TinyUrl Options"
11 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
12
13 <script type="application/x-javascript" src="chrome://tinyurl/content/dialogs/options.js"></script>
14
15 <groupbox style="width: 250px;">
16 <caption label="General"/>
17 <checkbox id="tinyurl.update.notify" label="Notify me of updates" checked="true" />
18 </groupbox>
19 <groupbox>
20 <caption label="Confirmation" />
21 <checkbox id="tinyurl.confirmation.hide" label="Do not show confirmation dialog apon TinyUrl creation." />
22 </groupbox>
23 </dialog>