diff --git a/chrome/content/zotero/xpcom/singlefile.js b/chrome/content/zotero/xpcom/singlefile.js index 0912cf8d6f..4e96ee17bf 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, } -}; +});