www

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

commit b5424b4a7128a89b355fd627ace219abfdcf31cd
parent ad37741fddc64c6fd31d2641b5f0e2eae2a2466a
Author: Dan Stillman <dstillman@zotero.org>
Date:   Wed,  7 Jun 2017 11:50:06 -0400

Fix context menu options for multi-item selection (broken in 5d16352f57)

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

diff --git a/chrome/content/zotero/zoteroPane.js b/chrome/content/zotero/zoteroPane.js @@ -2725,7 +2725,7 @@ var ZoteroPane = new function() if (items.length > 0) { // Multiple items selected - if (items.length.count > 1) { + if (items.length > 1) { var multiple = '.multiple'; var canMerge = true, canIndex = true, canRecognize = true, canRename = true;