mirror of
https://github.com/Mottie/tablesorter.git
synced 2024-11-15 23:54:22 +00:00
data-column="#" (with # > 9) didn't work in external filters.
This commit is contained in:
parent
8b3fbbbec5
commit
86f4e07cac
@ -907,7 +907,7 @@
|
||||
targets = wo.filter_initialized || !$input.filter( wo.filter_anyColumnSelector ).length,
|
||||
columns = [],
|
||||
val = $.trim( tsf.getLatestSearch( $input ).attr( 'data-column' ) || '' );
|
||||
if ( !/[,-]/.test(val) && val.length === 1 ) {
|
||||
if ( /^[0-9]+$/.test(val)) {
|
||||
return parseInt( val, 10 );
|
||||
}
|
||||
// process column range
|
||||
|
Loading…
Reference in New Issue
Block a user