blob: 7569b5797f1e2557fbdfb3c500c30781bffd32e1 (
plain)
1
2
3
4
5
6
7
8
9
|
TestHelpers.sortable = {
sort: function(handle, dx, dy, index, msg) {
$(handle).simulate("drag", {
dx: dx || 0,
dy: dy || 0
});
equal($(handle).parent().children().index(handle), index, msg);
}
};
|