From 753824a7e2d84f521ac0fb6ac2b8191b41a85f73 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Thu, 29 Jul 2021 03:47:39 -0400 Subject: [PATCH] fx-compat: Temporarily disable quick search bar mode menu --- chrome/content/zotero/xpcom/zotero.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/chrome/content/zotero/xpcom/zotero.js b/chrome/content/zotero/xpcom/zotero.js index c1582d33da..f2c8284479 100644 --- a/chrome/content/zotero/xpcom/zotero.js +++ b/chrome/content/zotero/xpcom/zotero.js @@ -1574,6 +1574,11 @@ Services.scriptloader.loadSubScript("resource://zotero/polyfill.js"); this.updateQuickSearchBox = function (document) { + // TEMP: Fx78 -- search box is now custom element. We may need to extend it + // to add a mode menu + return; + + var searchBox = document.getElementById('zotero-tb-search'); if(!searchBox) return;