mirror of
https://github.com/Mottie/tablesorter.git
synced 2024-11-15 23:54:22 +00:00
Filter: selectSource option now correctly handles parsed values that return a zero
This commit is contained in:
parent
324014283d
commit
5aeae68774
@ -1116,7 +1116,7 @@ ts.filter = {
|
||||
$.each(arry, function(i, v){
|
||||
// parse array data using set column parser; this DOES NOT pass the original
|
||||
// table cell to the parser format function
|
||||
parsed.push({ t : v, p : c.parsers && c.parsers[column].format( v, table, [], column ) || v });
|
||||
parsed.push({ t : v, p : c.parsers && c.parsers[column].format( v, table, [], column ) });
|
||||
});
|
||||
|
||||
// sort parsed select options
|
||||
|
Loading…
Reference in New Issue
Block a user