ftp.js 427 B

1234567891011121314151617
  1. $(document).ready(
  2. function (){
  3. $(".tablesorter").collapsible("td.collapsible", {collapse: true})
  4. .tablesorter({
  5. // set default sort column
  6. sortList: [[4,0]],
  7. // don't sort by first column
  8. headers: {0: {sorter: false}}
  9. // set the widgets being used - zebra stripping
  10. , widgets: ['zebra']
  11. , onRenderHeader: function (){
  12. this.wrapInner("<span></span>");
  13. }
  14. , debug: false
  15. });
  16. }
  17. );