From 5ac94e2512ea92701527e811210e1ac927d4b89f Mon Sep 17 00:00:00 2001 From: Nguyen Nguyen Date: Fri, 10 Aug 2012 01:36:55 -0500 Subject: [PATCH] Move to the right place (src, not the generated file) --- media/js/jquery.dataTables.js | 2 +- media/src/api/api.methods.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/media/js/jquery.dataTables.js b/media/js/jquery.dataTables.js index da1289df..2c28b672 100644 --- a/media/js/jquery.dataTables.js +++ b/media/js/jquery.dataTables.js @@ -5368,7 +5368,7 @@ var nBody = oSettings.nTBody; var i, iLen; - bRemove = (bRemove===undefined) ? false : bRemove; + bRemove = (bRemove===undefined) ? false : true; /* Flag to note that the table is currently being destroyed - no action should be taken */ oSettings.bDestroying = true; diff --git a/media/src/api/api.methods.js b/media/src/api/api.methods.js index 48fae739..622d461b 100644 --- a/media/src/api/api.methods.js +++ b/media/src/api/api.methods.js @@ -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;