From: phasefx Date: Wed, 4 Nov 2009 04:31:17 +0000 (+0000) Subject: typos X-Git-Tag: kcls-grey-screen-prod1~3101 X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=ae85b3e8631016598504294891bcbc32e5db48a5;p=evergreen%2Fequinox.git typos git-svn-id: svn://svn.open-ils.org/ILS/trunk@14762 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- 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 ); } }