From 9b9ca18f61bce0f86534c215d647f34055e570bb Mon Sep 17 00:00:00 2001 From: phasefx Date: Thu, 8 Dec 2005 16:17:56 +0000 Subject: [PATCH] syntax git-svn-id: svn://svn.open-ils.org/ILS/trunk@2288 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- .../xul/staff_client/chrome/content/evergreen/main/list.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Open-ILS/xul/staff_client/chrome/content/evergreen/main/list.js b/Open-ILS/xul/staff_client/chrome/content/evergreen/main/list.js index 5e1fa20125..17a3916d2f 100644 --- a/Open-ILS/xul/staff_client/chrome/content/evergreen/main/list.js +++ b/Open-ILS/xul/staff_client/chrome/content/evergreen/main/list.js @@ -58,8 +58,8 @@ main.list.prototype = { 'append' : function (params) { switch (this.node.nodeName) { - 'tree' : this.append_to_tree(params); break; - default: throw('NYI: Need .append() for ' . this.node.nodeName); break; + case 'tree' : this.append_to_tree(params); break; + default: throw('NYI: Need .append() for ' + this.node.nodeName); break; } }, -- 2.43.2