diff --git a/chrome/content/zotero/xpcom/singlefile.js b/chrome/content/zotero/xpcom/singlefile.js index f0eeb52554..4036a5600c 100644 --- a/chrome/content/zotero/xpcom/singlefile.js +++ b/chrome/content/zotero/xpcom/singlefile.js @@ -23,7 +23,7 @@ ***** END LICENSE BLOCK ***** */ -Zotero.SingleFile = { +Zotero.SingleFile = Object.assign(Zotero.SingleFile || {}, { // These are defaults from SingleFile // Located in: zotero/resources/SingleFile/extension/core/bg/config.js CONFIG: { @@ -95,4 +95,4 @@ Zotero.SingleFile = { insertSingleFileComment: true, blockMixedContent: false, } -}; +});