mirror of
https://github.com/Mottie/tablesorter.git
synced 2024-11-15 23:54:22 +00:00
filtred means not .filtered
This commit is contained in:
parent
cef5cc7b14
commit
828207b7fb
@ -95,7 +95,7 @@ chart = ts.chart = {
|
|||||||
var cells = $tr.find('td');
|
var cells = $tr.find('td');
|
||||||
var row = [];
|
var row = [];
|
||||||
if ((wo.chart_incRows == 'visible' && $tr.is(':visible')) ||
|
if ((wo.chart_incRows == 'visible' && $tr.is(':visible')) ||
|
||||||
(wo.chart_incRows == 'filtered' && $tr.hasClass(wo.filter_filteredRow || 'filtered')) ||
|
(wo.chart_incRows == 'filtered' && !$tr.hasClass(wo.filter_filteredRow || 'filtered')) ||
|
||||||
(wo.chart_incRows != 'visible' && wo.chart_incRows != 'filtered')
|
(wo.chart_incRows != 'visible' && wo.chart_incRows != 'filtered')
|
||||||
) {
|
) {
|
||||||
// Add all cols (don't mess up indx for sorting)
|
// Add all cols (don't mess up indx for sorting)
|
||||||
|
Loading…
Reference in New Issue
Block a user