Tablesorter sorts some floating point numbers incorrectly

Tablesorter sorts some floating point numbers incorrectly

If I build a table containing 1.9, 9.9, 15.9, Tablesorter does the right thing when I click the headers. If I instead use the values 1.0, 9.0, 15.0, it incorrectly sorts them as 1.0, 15.0, 9.0. Have I gone crazy? I'm using jQuery 1.4.2 and Tablesorter 2.0.3. Here's some HTML that demonstrates the problem:

  1. <html> 
  2.   <head> 
  3.     <script src="public/javascripts/jquery.min.js" type="text/javascript"></script>
  4.     <script src='public/javascripts/jquery.tablesorter.min.js' type='text/javascript'></script> 
  5.   </head> 
  6.   <body> 
  7.         <script language='javascript' type='text/javascript'> 
  8.           $(document).ready(function() { $(".test_table").tablesorter(); });
  9.         </script> 
  10.         <table cellspacing="1" class="test_table">             
  11.             <thead>
  12.                 <tr> 
  13.                     <th>broken table</th> 
  14.                 </tr> 
  15.             </thead> 
  16.             <tbody> 
  17.                 <tr>
  18.                     <td>1.0</td>
  19.                 </tr>
  20.                 <tr>
  21.                     <td>9.0</td>
  22.                 </tr>
  23.                 <tr> 
  24.                     <td>15.0</td>
  25.                 </tr>
  26.             </tbody> 
  27.         </table> 
  28.         <table cellspacing="1" class="test_table">             
  29.             <thead>
  30.                 <tr> 
  31.                     <th>working table</th> 
  32.                 </tr> 
  33.             </thead> 
  34.             <tbody> 
  35.                 <tr>
  36.                     <td>1.9</td>
  37.                 </tr>
  38.                 <tr>
  39.                     <td>9.9</td>
  40.                 </tr>
  41.                 <tr> 
  42.                     <td>15.9</td>
  43.                 </tr>
  44.             </tbody> 
  45.         </table> 
  46.     </body> 
  47. </html>