Skip to content

Commit

Permalink
Merge pull request #3429 from valepu/patch-2
Browse files Browse the repository at this point in the history
fix(clearThisRowInvisible) not using parameter reason
  • Loading branch information
PaulL1 committed May 19, 2015
2 parents 9adca3d + b955a2d commit 9028ed3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/js/core/factories/GridRow.js
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ angular.module('ui.grid')
*/
GridRow.prototype.clearThisRowInvisible = function ( reason, fromRowsProcessor ) {
if (typeof(this.invisibleReason) !== 'undefined' ) {
delete this.invisibleReason.user;
delete this.invisibleReason[reason];
}
this.evaluateRowVisibility( fromRowsProcessor );
};
Expand Down Expand Up @@ -216,4 +216,4 @@ angular.module('ui.grid')
return GridRow;
}]);

})();
})();

0 comments on commit 9028ed3

Please sign in to comment.