mirror of
https://github.com/Mottie/tablesorter.git
synced 2024-11-15 23:54:22 +00:00
Filter: select source now uses config.textAttribute when gathering text. Fixes #812
This commit is contained in:
parent
485b515066
commit
df87314007
@ -1499,7 +1499,7 @@ ts.filter = {
|
||||
} else {
|
||||
cell = row.cells[column];
|
||||
if (cell) {
|
||||
arry.push( $.trim( cell.textContent || cell.innerText || $(cell).text() ) );
|
||||
arry.push( $.trim( cell.getAttribute( c.textAttribute ) || cell.textContent || $(cell).text() ) );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user