Skip to content

Commit

Permalink
Core: add tablesorter-processing class name to table during processing.
Browse files Browse the repository at this point in the history
Fixes #655
  • Loading branch information
Mottie committed Jun 21, 2014
1 parent 948d8de commit a10f0de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/jquery.tablesorter.js
Original file line number Diff line number Diff line change
Expand Up @@ -1181,9 +1181,9 @@
return this.sortDisabled ? false : ts.isValueInArray( parseFloat($(this).attr('data-column')), c.sortList) >= 0;
});
}
$h.addClass(ts.css.processing + ' ' + c.cssProcessing);
table.add($h).addClass(ts.css.processing + ' ' + c.cssProcessing);
} else {
$h.removeClass(ts.css.processing + ' ' + c.cssProcessing);
table.add($h).removeClass(ts.css.processing + ' ' + c.cssProcessing);
}
};

Expand Down

0 comments on commit a10f0de

Please sign in to comment.