From 8a9986da475f4f50c21cd5cc2e56530fd51a6c95 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Thu, 29 Dec 2016 03:57:50 -0500 Subject: [PATCH] Reduce initial visible creators to 5-7 (from 10-15) --- chrome/content/zotero/bindings/itembox.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/chrome/content/zotero/bindings/itembox.xml b/chrome/content/zotero/bindings/itembox.xml index c9ecba1a2f..11dd51c123 100644 --- a/chrome/content/zotero/bindings/itembox.xml +++ b/chrome/content/zotero/bindings/itembox.xml @@ -53,7 +53,7 @@ [] - 10 + 5 @@ -561,8 +561,8 @@ if (num > 0) { // Limit number of creators display var max = Math.min(num, this._initialVisibleCreators); - // If fewer than five more, just display - if (num < max + 5 || this._displayAllCreators) { + // If only 1 or 2 more, just display + if (num < max + 3 || this._displayAllCreators) { max = num; } for (var i = 0; i < max; i++) {