mirror of
https://github.com/Mottie/tablesorter.git
synced 2025-01-12 15:24:21 +00:00
ColumnSelector: target header column attr. Fixes #1238
This commit is contained in:
parent
8512a2631f
commit
e5f41c4fdf
2
dist/js/widgets/widget-columnSelector.min.js
vendored
2
dist/js/widgets/widget-columnSelector.min.js
vendored
File diff suppressed because one or more lines are too long
@ -270,7 +270,7 @@
|
||||
var array = [],
|
||||
temp = ' col:nth-child(' + column + ')';
|
||||
array.push(prefix + temp + ',' + prefix + '_extra_table' + temp);
|
||||
temp = ' tr:not(.hasSpan) th:nth-child(' + column + ')';
|
||||
temp = ' tr:not(.hasSpan) th[data-column="' + ( column - 1 ) + '"]';
|
||||
array.push(prefix + temp + ',' + prefix + '_extra_table' + temp);
|
||||
temp = ' tr:not(.hasSpan) td:nth-child(' + column + ')';
|
||||
array.push(prefix + temp + ',' + prefix + '_extra_table' + temp);
|
||||
|
Loading…
Reference in New Issue
Block a user