commit 8e2de92ca84bf48b6f21439aded90fe3c740a118
parent ff0f649a4d8a7f3ebcd4aec0932667bac2a40f8a
Author: Dan Stillman <dstillman@zotero.org>
Date: Fri, 16 Aug 2013 16:28:23 -0400
Fix the Quick Copy site editor window
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/chrome/content/zotero/preferences/quickCopySiteEditor.xul b/chrome/content/zotero/preferences/quickCopySiteEditor.xul
@@ -60,7 +60,7 @@
<menulist id="zotero-quickCopy-menu"/>
<separator class="thin"/>
<checkbox id="zotero-quickCopy-copyAsHTML" label="&zotero.preferences.quickCopy.copyAsHTML;"
- oncommand="Zotero_Preferences.Export.buildQuickCopyFormatDropDown(
+ oncommand="window.opener.Zotero_Preferences.Export.buildQuickCopyFormatDropDown(
document.getElementById('zotero-quickCopy-menu'), this.checked ? 'html' : ''
)"/>
</vbox>
@@ -69,12 +69,12 @@
<![CDATA[
var io = window.arguments[0];
document.getElementById('zotero-quickCopy-domain').value = io.domain ? io.domain : '';
- Zotero_Preferences.Export.buildQuickCopyFormatDropDown(
+ window.opener.Zotero_Preferences.Export.buildQuickCopyFormatDropDown(
document.getElementById('zotero-quickCopy-menu'),
Zotero.QuickCopy.getContentType(io.format),
io.format
);
- Zotero_Preferences.Export.updateQuickCopyHTMLCheckbox();
+ window.opener.Zotero_Preferences.Export.updateQuickCopyHTMLCheckbox();
]]>
</script>
</dialog>