Minor change to chrome/content/util/list.js.
authorJason Stephenson <jstephenson@mvlc.org>
Thu, 18 Apr 2013 14:49:06 +0000 (10:49 -0400)
committerJason Stephenson <jstephenson@mvlc.org>
Thu, 18 Apr 2013 15:16:38 +0000 (11:16 -0400)
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 <jstephenson@mvlc.org>
Open-ILS/xul/staff_client/chrome/content/util/list.js

index 2d4c33a..1ddfb0f 100644 (file)
@@ -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) {