From: Thierry Parmentelat Date: Sat, 14 Nov 2009 13:24:12 +0000 (+0000) Subject: bug fix X-Git-Tag: PLEWWW-4.3-35~2 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=ac3ec8e7d4eb89b3dbfa98a88a58a35cb696129e;p=plewww.git bug fix --- 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); }