(x)
| 868 | }; |
| 869 | |
| 870 | var unique = function(x) { |
| 871 | var ux = []; |
| 872 | $.each(x, function(i, el){ |
| 873 | if ($.inArray(el, ux) === -1) ux.push(el); |
| 874 | }); |
| 875 | return ux; |
| 876 | } |
| 877 | |
| 878 | // change the row index of a cell |
| 879 | var tweakCellIndex = function(cell) { |
no outgoing calls
no test coverage detected