From bfa4b6e5d07fd3941119b7070babe06d23c3624b Mon Sep 17 00:00:00 2001 From: Jason Stephenson Date: Thu, 18 Apr 2013 10:49:06 -0400 Subject: [PATCH] Minor change to chrome/content/util/list.js. Change the initializer of this.count_for_display from 0 to 1 in order to match the counting of other lists in the client and to provide something that staff are likely to prefer. Signed-off-by: Jason Stephenson --- Open-ILS/xul/staff_client/chrome/content/util/list.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/xul/staff_client/chrome/content/util/list.js b/Open-ILS/xul/staff_client/chrome/content/util/list.js index 2d4c33a710..1ddfb0f0a3 100644 --- a/Open-ILS/xul/staff_client/chrome/content/util/list.js +++ b/Open-ILS/xul/staff_client/chrome/content/util/list.js @@ -11,7 +11,7 @@ util.list = function (id) { this.sub_sorts = []; - this.count_for_display = 0; + this.count_for_display = 1; if (!this.node) throw('Could not find element ' + id); switch(this.node.nodeName) { -- 2.11.0