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

Update to use false value in bRemove arg in fnDestroy

This commit is contained in:
Nguyen Nguyen 2012-08-09 18:10:07 -05:00
parent b16efbc62a
commit f29bd9ffbf

View File

@ -5368,7 +5368,7 @@
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;