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

Merge pull request #76 from nnguyen/false_args_in_fnDestroy

Update to use false value in bRemove arg in fnDestroy
This commit is contained in:
Allan Jardine 2012-08-09 23:47:44 -07:00
commit 0585beb0c9

View File

@ -474,7 +474,7 @@ this.fnDestroy = function ( bRemove )
var nBody = oSettings.nTBody;
var i, iLen;
bRemove = (bRemove===undefined) ? false : true;
bRemove = (bRemove===undefined) ? false : bRemove;
/* Flag to note that the table is currently being destroyed - no action should be taken */
oSettings.bDestroying = true;