From: Brion Vibber Date: Thu, 15 Dec 2011 00:38:09 +0000 (+0000) Subject: Remove stray trailing commas on last items in array literals -- this breaks IE 6/7/8 X-Git-Tag: 1.31.0-rc.0~25962 X-Git-Url: http://git.cyclocoop.org/%24href?a=commitdiff_plain;h=e13cec480273670b6cca7ae15e4d0457f4d3d6c0;p=lhc%2Fweb%2Fwiklou.git Remove stray trailing commas on last items in array literals -- this breaks IE 6/7/8 Followup r105560 --- diff --git a/tests/qunit/suites/resources/jquery/jquery.tablesorter.test.js b/tests/qunit/suites/resources/jquery/jquery.tablesorter.test.js index 6859eaf750..61f1408df1 100644 --- a/tests/qunit/suites/resources/jquery/jquery.tablesorter.test.js +++ b/tests/qunit/suites/resources/jquery/jquery.tablesorter.test.js @@ -492,7 +492,7 @@ var numbers = [ [ '13,000'], [ '9' ], [ '14' ], - [ '8.0' ], + [ '8.0' ] ]; var numbersAsc = [ [ '7' ], @@ -500,7 +500,7 @@ var numbersAsc = [ [ '9' ], [ '12' ], [ '14' ], - [ '13,000'], + [ '13,000'] ]; tableTest( 'bug 8115: sort numbers with commas (ascending)',