Skip to content

Commit

Permalink
Updated isDrillDown to take colIndex
Browse files Browse the repository at this point in the history
  • Loading branch information
Dwaynekj authored Feb 7, 2017
1 parent 6e18c72 commit d9b0935
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -201,11 +201,11 @@ DataSourceBase.prototype = {
},


// BOOLEAN METHODS (NO ARGS)
// BOOLEAN METHODS

isDrillDown: function() {
isDrillDown: function(colIndex) {
if (this.dataSource) {
return this.dataSource.isDrillDown();
return this.dataSource.isDrillDown(colIndex);
}
},

Expand Down

0 comments on commit d9b0935

Please sign in to comment.