Skip to content

Commit

Permalink
Core: Fix extra header class name updating. See #1116
Browse files Browse the repository at this point in the history
  • Loading branch information
Mottie committed Jan 5, 2016
1 parent 535c7c4 commit c34f78f
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 @@ -1046,8 +1046,8 @@
// find the footer
$headers = c.$table
.find( 'tfoot tr' )
.children()
.add( $( c.namespace + '_extra_headers' ) )
.add( $( c.namespace + '_extra_headers' ).children( 'tr' ) )
.children( 'td, th' )
.removeClass( css.join( ' ' ) );
// remove all header information
c.$headers
Expand Down

0 comments on commit c34f78f

Please sign in to comment.