mirror of
https://github.com/DataTables/DataTables.git
synced 2024-12-10 22:24:10 +01:00
fix to fnAddData ignoring the default bRedraw=true
Signed-off-by: Michal Poreba <michalporeba@gmail.com>
This commit is contained in:
parent
6fbda0a08f
commit
bedec19423
@ -181,7 +181,7 @@ this.fnAddData = function( mData, bRedraw )
|
|||||||
|
|
||||||
oSettings.aiDisplay = oSettings.aiDisplayMaster.slice();
|
oSettings.aiDisplay = oSettings.aiDisplayMaster.slice();
|
||||||
|
|
||||||
if ( bRedraw )
|
if ( bRedraw === undefined || bRedraw )
|
||||||
{
|
{
|
||||||
_fnReDraw( oSettings );
|
_fnReDraw( oSettings );
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user