www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | Submodules | README | LICENSE

commit 2bf611ccf8606a10a50d2bac7df843cc3af62d2a
parent c384b18434efda90212ffe537f65f070b386208d
Author: Dan Stillman <dstillman@zotero.org>
Date:   Thu, 10 Mar 2016 23:03:45 -0500

Fix shift-drag to copy citations

Diffstat:
Mchrome/content/zotero/xpcom/quickCopy.js | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/chrome/content/zotero/xpcom/quickCopy.js b/chrome/content/zotero/xpcom/quickCopy.js @@ -369,7 +369,7 @@ Zotero.QuickCopy = new function() { var csl = Zotero.Styles.get(format.id).getCiteProc(locale); csl.updateItems(items.map(item => item.id)); var citation = { - citationItems: items.map(item => item.id), + citationItems: items.map(item => ({ id: item.id })), properties: {} }; var html = csl.previewCitationCluster(citation, [], [], "html");