| Index: chrome/content/options.xul | 
| =================================================================== | 
| --- a/chrome/content/options.xul | 
| +++ b/chrome/content/options.xul | 
| @@ -19,25 +19,21 @@ | 
|  | 
| <?xml-stylesheet href="chrome://global/skin/" type="text/css"?> | 
| <?xml-stylesheet href="chrome://url-fixer/skin/options.css" type="text/css"?> | 
| <!DOCTYPE prefwindow SYSTEM "chrome://url-fixer/locale/options.dtd"> | 
| <dialog | 
| xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" | 
| title="&urlfixer.options.title;" | 
| buttons="accept" | 
| -    onload="initCheckboxes();updateList();" | 
| +    onload="updateList();" | 
| windowtype="urlfixer:options"> | 
| <script type="text/javascript" src="common.js"/> | 
| <script type="text/javascript" src="options.js"/> | 
| <groupbox> | 
| -    <checkbox id="domainOptIn" label="&urlfixer.options.optIn;" oncommand="Prefs.domainOptIn = this.checked;"/> | 
| -    <label class="text-link" href="http://urlfixer.org/data/">&urlfixer.options.optIn.learnMore;</label> | 
| -  </groupbox> | 
| -  <groupbox> | 
| <tabbox> | 
| <tabs> | 
| <tab label="&urlfixer.options.tabs.whitelistLabel;"/> | 
| <tab label="&urlfixer.options.tabs.findAndReplaceLabel;"/> | 
| </tabs> | 
| <tabpanels> | 
| <tabpanel orient="vertical"> | 
| <listbox id="whitelist" flex="1" seltype="multiple" onselect="onItemSelected(this);" _removeButton="whitelist_remove-button" _emptyLabel="&urlfixer.options.whitelistEmptyLabel;"> | 
|  |