From 64059977235d6035fa3637a3c8b6c361ed273cb4 Mon Sep 17 00:00:00 2001 From: Abe Jellinek Date: Thu, 25 May 2023 09:13:42 +0300 Subject: [PATCH] Use Zotero.appName in window title --- chrome/content/zotero/tabs.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/tabs.js b/chrome/content/zotero/tabs.js index 8aa3a4ccd1..d3cdbefe9b 100644 --- a/chrome/content/zotero/tabs.js +++ b/chrome/content/zotero/tabs.js @@ -80,7 +80,7 @@ var Zotero_Tabs = new function () { iconBackgroundImage: tab.iconBackgroundImage }))); var { tab } = this._getTab(this._selectedID); - document.title = (tab.title.length ? tab.title + ' - ' : '') + 'Zotero'; + document.title = (tab.title.length ? tab.title + ' - ' : '') + Zotero.appName; this._updateTabBar(); // Hide any tab `title` tooltips that might be open window.Zotero_Tooltip.stop();