Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion jquery.tablesorter.js
Original file line number Diff line number Diff line change
Expand Up @@ -733,7 +733,10 @@
this.order = this.count++ % 2;
// always sort on the locked order.
if(this.lockedOrder) this.order = this.lockedOrder;

// set every other header back to the default initial sort order
$headers.not($cell).each( function() {
this.count = formatSortingOrder(config.sortInitialOrder);
});
// user only whants to sort on one
// column
if (!e[config.sortMultiSortKey]) {
Expand Down