From bedec1942356621dd84f68707cc3e3aba1a819f0 Mon Sep 17 00:00:00 2001 From: Michal Poreba Date: Fri, 6 Jan 2012 11:46:39 +0000 Subject: [PATCH] fix to fnAddData ignoring the default bRedraw=true Signed-off-by: Michal Poreba --- media/src/api/api.methods.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media/src/api/api.methods.js b/media/src/api/api.methods.js index 0828163d..3bcc2349 100644 --- a/media/src/api/api.methods.js +++ b/media/src/api/api.methods.js @@ -181,7 +181,7 @@ this.fnAddData = function( mData, bRedraw ) oSettings.aiDisplay = oSettings.aiDisplayMaster.slice(); - if ( bRedraw ) + if ( bRedraw === undefined || bRedraw ) { _fnReDraw( oSettings ); }