Core: add tablesorter-processing class name to table during processing. Fixes #655

This commit is contained in:
Mottie 2014-06-21 14:02:49 -05:00
parent 948d8de4f9
commit a10f0decf7

View File

@ -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);
}
};