1
0
mirror of https://github.com/DataTables/DataTables.git synced 2025-03-02 03:29:14 +01:00

Merge pull request #41 from michalporeba/master

fnAddData ignoring default value of bRedraw parameter
This commit is contained in:
Allan Jardine 2012-01-06 04:07:46 -08:00
commit 7ba7027ee8

View File

@ -181,7 +181,7 @@ this.fnAddData = function( mData, bRedraw )
oSettings.aiDisplay = oSettings.aiDisplayMaster.slice();
if ( bRedraw )
if ( bRedraw === undefined || bRedraw )
{
_fnReDraw( oSettings );
}