Skip to content
This repository has been archived by the owner on May 30, 2021. It is now read-only.

Commit

Permalink
jslint
Browse files Browse the repository at this point in the history
  • Loading branch information
Mobius1 committed Jul 2, 2017
1 parent 937e5d5 commit 5e63b2f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/vanilla-dataTables.js
Original file line number Diff line number Diff line change
Expand Up @@ -886,7 +886,7 @@
if ( columns.length ) {
util.each(columns, function(i, column) {
if ( this.dt.hiddenColumns.indexOf(column) < 0 ) {
this.dt.hiddenColumns.push(column)
this.dt.hiddenColumns.push(column);
}
}, this);

Expand All @@ -907,7 +907,7 @@
util.each(columns, function(i, column) {
index = this.dt.hiddenColumns.indexOf(column);
if ( index > -1 ) {
this.dt.hiddenColumns.splice(index, 1)
this.dt.hiddenColumns.splice(index, 1);
}
}, this);

Expand Down

0 comments on commit 5e63b2f

Please sign in to comment.