mirror of
https://github.com/Mottie/tablesorter.git
synced 2025-01-12 15:24:21 +00:00
remove processing icon from sticky header
This commit is contained in:
parent
5cc4ea204e
commit
b14d8809a1
@ -34,6 +34,7 @@
|
||||
$("table").tablesorter({
|
||||
|
||||
widthFixed : true,
|
||||
showProcessing: true,
|
||||
|
||||
headerTemplate : '{content} {icon}', // Add icon for jui theme; new in v2.7!
|
||||
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user