Skip to content

Commit

Permalink
change datatable initializer
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasoniii committed Jan 27, 2016
1 parent 58aeaeb commit 6fcc4e5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/widgets/kbaseExpressionSampleTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,14 @@ define('kbaseExpressionSampleTable',
}
);

var $dt = this.data('tableElem').DataTable({
var $dt = this.data('tableElem').dataTable({
aoColumns : [
{ title : 'Gene ID'},
{ title : 'Feature Value'}
]
});
//$dt.fnAddData(rows);
$dt.rows.add(rows);
$dt.fnAddData(rows);
//$dt.rows.add(rows);

/*this.data('tableElem').kbaseTable(
{
Expand Down

0 comments on commit 6fcc4e5

Please sign in to comment.