From e1146e2f9d0015188db02bcb3c4de98277584573 Mon Sep 17 00:00:00 2001 From: Allan Jardine Date: Sun, 15 Jan 2012 09:32:05 +0000 Subject: [PATCH] Fix: _fnGetTdNodes would error if trying to get only the first row --- media/src/core/core.support.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media/src/core/core.support.js b/media/src/core/core.support.js index d08e7def..33e22994 100644 --- a/media/src/core/core.support.js +++ b/media/src/core/core.support.js @@ -58,7 +58,7 @@ function _fnGetTdNodes ( oSettings, iIndividualRow ) iColumn, iColumns, oData, sNodeName, iStart=0, iEnd=iRows; /* Allow the collection to be limited to just one row */ - if ( iIndividualRow ) + if ( iIndividualRow !== undefined ) { iStart = iIndividualRow; iEnd = iIndividualRow+1;