From ae85b3e8631016598504294891bcbc32e5db48a5 Mon Sep 17 00:00:00 2001 From: phasefx Date: Wed, 4 Nov 2009 04:31:17 +0000 Subject: [PATCH] typos git-svn-id: svn://svn.open-ils.org/ILS/trunk@14762 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- Open-ILS/xul/staff_client/chrome/content/util/list.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 59290276ab..9189827b32 100644 --- a/Open-ILS/xul/staff_client/chrome/content/util/list.js +++ b/Open-ILS/xul/staff_client/chrome/content/util/list.js @@ -520,10 +520,10 @@ util.list.prototype = { // Remove oldest row //if (typeof params.to_bottom != 'undefined') if (typeof params.to_top == 'undefined') { - if (typeof params.on_delete == 'function') { prams.on_delete( treechildren_node.firstChild.getAttribute('unique_row_counter') ); } + if (typeof params.on_delete == 'function') { params.on_delete( treechildren_node.firstChild.getAttribute('unique_row_counter') ); } treechildren_node.removeChild( treechildren_node.firstChild ); } else { - if (typeof params.on_delete == 'function') { prams.on_delete( treechildren_node.lastChild.getAttribute('unique_row_counter') ); } + if (typeof params.on_delete == 'function') { params.on_delete( treechildren_node.lastChild.getAttribute('unique_row_counter') ); } treechildren_node.removeChild( treechildren_node.lastChild ); } } -- 2.11.0