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:
commit
0585beb0c9
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user