From 8edd4b052366f1ccc368fe274cba754cae341dd4 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Mon, 27 Mar 2017 04:38:48 -0400 Subject: [PATCH] Fix classic Add Citation dialog after 820755e15 --- chrome/content/zotero/selectItemsDialog.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chrome/content/zotero/selectItemsDialog.js b/chrome/content/zotero/selectItemsDialog.js index 72d2e97626..7efc7ab3a9 100644 --- a/chrome/content/zotero/selectItemsDialog.js +++ b/chrome/content/zotero/selectItemsDialog.js @@ -96,7 +96,7 @@ var onCollectionSelected = Zotero.Promise.coroutine(function* () clearItemsPaneMessage(); connectionSelectedDeferred.resolve(); - collectionsView.onSelect(); + collectionsView.runListeners('select'); } }); @@ -111,7 +111,7 @@ function onSearch() function onItemSelected() { - itemsView.onSelect(); + itemsView.runListeners('select'); } function setItemsPaneMessage(content) {