v0.6.0
Breaking Changes
- header.html: due to 6bb2aba8,
anyone who relied on a specific 'position' field to order table columns will now
need to change the order items's in the column array
Previously:
cols[1].position = 2;
cols[2].position = 1;
Now:
var swappedCol = cols[2];
cols[2] = cols[1];
cols[1] = swappedCol;