[open-ils-commits] r14762 - trunk/Open-ILS/xul/staff_client/chrome/content/util (phasefx)
svn at svn.open-ils.org
svn at svn.open-ils.org
Tue Nov 3 23:31:20 EST 2009
Author: phasefx
Date: 2009-11-03 23:31:17 -0500 (Tue, 03 Nov 2009)
New Revision: 14762
Modified:
trunk/Open-ILS/xul/staff_client/chrome/content/util/list.js
Log:
typos
Modified: trunk/Open-ILS/xul/staff_client/chrome/content/util/list.js
===================================================================
--- trunk/Open-ILS/xul/staff_client/chrome/content/util/list.js 2009-11-04 01:25:28 UTC (rev 14761)
+++ trunk/Open-ILS/xul/staff_client/chrome/content/util/list.js 2009-11-04 04:31:17 UTC (rev 14762)
@@ -520,10 +520,10 @@
// 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 );
}
}
More information about the open-ils-commits
mailing list