remove processing icon from sticky header

This commit is contained in:
Mottie 2013-04-02 13:05:55 -05:00
parent 5cc4ea204e
commit b14d8809a1
2 changed files with 5 additions and 1 deletions

View File

@ -34,6 +34,7 @@
$("table").tablesorter({
widthFixed : true,
showProcessing: true,
headerTemplate : '{content} {icon}', // Add icon for jui theme; new in v2.7!

View File

@ -789,7 +789,10 @@ ts.addWidget({
.bind('sortEnd.tsSticky', function(){
hdrCells.each(function(i){
var t = stkyCells.eq(i);
t.attr('class', $(this).attr('class'));
t
.attr('class', $(this).attr('class'))
// remove processing icon
.removeClass(c.cssProcessing);
if (c.cssIcon){
t
.find('.' + c.cssIcon)