commit 04d957a95c8c4cfb374fbc164d5d527bf2c12ac2
parent ef180d190f1b982007a502be2ceade29bc43cb0f
Author: Dan Stillman <dstillman@zotero.org>
Date: Mon, 1 Feb 2016 18:49:37 -0500
Fix "Add Identifier by ID" in Fx45
const doesn't create a property on the global object in Fx45
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/chrome/content/zotero/lookup.js b/chrome/content/zotero/lookup.js
@@ -27,7 +27,7 @@
* Handles UI for lookup panel
* @namespace
*/
-const Zotero_Lookup = new function () {
+var Zotero_Lookup = new function () {
/**
* Performs a lookup by DOI, PMID, or ISBN
*/