Skip to content

Commit

Permalink
ColumnSelector: Include tbody colspan updates on removal
Browse files Browse the repository at this point in the history
  • Loading branch information
Mottie committed Jul 4, 2017
1 parent 1c65611 commit cae2959
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/widgets/widget-columnSelector.js
Expand Up @@ -547,7 +547,7 @@
csel.$style.remove();
csel.$breakpoints.remove();
$( c.namespace + 'columnselectorHasSpan' ).removeClass( wo.filter_filteredRow || 'filtered' );
c.$table.children('thead, tfoot').find('[data-col-span]').each(function(indx, el) {
c.$table.find('[data-col-span]').each(function(indx, el) {
var $el = $(el);
console.log($el, $el.attr('data-col-span'));
$el.attr('colspan', $el.attr('data-col-span'));
Expand Down

0 comments on commit cae2959

Please sign in to comment.