(a, b)
| 482 | |
| 483 | // Define a comparison function using the orderings |
| 484 | var comparator = function (a, b) { |
| 485 | return ord.indexOf(platformOf(a)) - ord.indexOf(platformOf(b)); |
| 486 | }; |
| 487 | |
| 488 | // Now sort the columns using the comparison function |
| 489 | table.detach().find('tr').each(function (i, row) { |
nothing calls this directly
no test coverage detected