diff --git a/media/src/api/api.columns.js b/media/src/api/api.columns.js index a2142a02..5cc3d034 100644 --- a/media/src/api/api.columns.js +++ b/media/src/api/api.columns.js @@ -42,16 +42,6 @@ _api.register( 'columns().header()', function ( selector, opts ) { } ); -/** - * - */ -_api.register( 'columns().cells()', function () { - return this.iterator( true, 'column-rows', function ( settings, column, i, j, rows ) { - return _pluck_order( settings.aoData, rows, 'anCells', column ) ; - } ); -} ); - - /** * */ diff --git a/media/src/api/api.row.js b/media/src/api/api.row.js index 1a61c7aa..e3ecba50 100644 --- a/media/src/api/api.row.js +++ b/media/src/api/api.row.js @@ -26,16 +26,6 @@ _api.register( 'row().node()', function () { } ); -_api.register( 'row().cells()', function () { - var ctx = this.context; - - if ( ctx.length && this.length ) { - return ctx[0].aoData[ this[0] ].anCells || undefined; - } - // return undefined; -} ); - - _api.register( 'row().data()', function ( data ) { var ctx = this.context; diff --git a/media/src/api/api.rows.js b/media/src/api/api.rows.js index f0da4423..d8f59159 100644 --- a/media/src/api/api.rows.js +++ b/media/src/api/api.rows.js @@ -43,13 +43,6 @@ _api.register( 'rows().nodes()', function () { } ); -_api.register( 'rows().cells()', function () { - return this.iterator( true, 'row', function ( settings, row ) { - return settings.aoData[ row ].anCells || undefined; - } ); -} ); - - _api.register( 'rows().data()', function ( data ) { return this.iterator( true, 'rows', function ( settings, rows ) { return _pluck_order( settings.aoData, rows, '_aData' );