From ac3ec8e7d4eb89b3dbfa98a88a58a35cb696129e Mon Sep 17 00:00:00 2001 From: Thierry Parmentelat Date: Sat, 14 Nov 2009 13:24:12 +0000 Subject: [PATCH] bug fix --- plekit/tablesort/plc_customsort.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plekit/tablesort/plc_customsort.js b/plekit/tablesort/plc_customsort.js index 62ba8bb..6d58813 100644 --- a/plekit/tablesort/plc_customsort.js +++ b/plekit/tablesort/plc_customsort.js @@ -56,13 +56,13 @@ function _sortAlphaNumeric(a, b, non_numeric_first) { function sortAlphaNumericBottomPrepareData(tdNode, innerText) { return _sortAlphaNumericPrepareData(tdNode, innerText); } -function sortAlphaNumericBottom(a,b,) { +function sortAlphaNumericBottom(a,b) { return _sortAlphaNumeric (a,b,false); } function sortAlphaNumericTopPrepareData(tdNode, innerText) { return _sortAlphaNumericPrepareData(tdNode, innerText); } -function sortAlphaNumericTop(a,b,) { +function sortAlphaNumericTop(a,b) { return _sortAlphaNumeric (a,b,true); } -- 2.47.0