mirror of
https://github.com/Mottie/tablesorter.git
synced 2024-11-15 23:54:22 +00:00
ColumnSelector: Include HTML in empty headers. Fixes #1335
This commit is contained in:
parent
e5f41c4fdf
commit
b9e89d4962
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
@ -151,7 +151,7 @@
|
||||
colSel.$column[colId] = $(this);
|
||||
|
||||
// set default col title
|
||||
name = $header.attr(wo.columnSelector_name) || $header.text();
|
||||
name = $header.attr(wo.columnSelector_name) || $header.text().trim() || c.headerContent[ index ];
|
||||
if ($container.length) {
|
||||
colSel.$wrapper[colId] = $(wo.columnSelector_layout.replace(/\{name\}/g, name)).appendTo($container);
|
||||
colSel.$checkbox[colId] = colSel.$wrapper[colId]
|
||||
|
Loading…
Reference in New Issue
Block a user