From e94b0037bfe8811d66434ea5bf143020816b757d Mon Sep 17 00:00:00 2001 From: phasefx Date: Sat, 17 Dec 2005 06:34:52 +0000 Subject: [PATCH] fix git-svn-id: svn://svn.open-ils.org/ILS/trunk@2431 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- .../xul/staff_client/chrome/content/evergreen/util/list.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Open-ILS/xul/staff_client/chrome/content/evergreen/util/list.js b/Open-ILS/xul/staff_client/chrome/content/evergreen/util/list.js index ccb94cc11c..ac483b67ff 100644 --- a/Open-ILS/xul/staff_client/chrome/content/evergreen/util/list.js +++ b/Open-ILS/xul/staff_client/chrome/content/evergreen/util/list.js @@ -33,7 +33,8 @@ util.list.prototype = { this.columns = params.columns; switch(this.node.nodeName) { - case 'tree' : _init_tree(params); break; + case 'tree' : this._init_tree(params); break; + case 'listbox' : this._init_listbox(params); break; default: throw('NYI: Need ._init() for ' + this.node.nodeName); break; } }, -- 2.43.2