Skip to content

Commit

Permalink
Exposing the column being sorted
Browse files Browse the repository at this point in the history
angular-ui#5692 Exposing the column being sorted.
angular-ui#5692
  • Loading branch information
chmirenko authored Sep 28, 2016
1 parent eec9067 commit e8884bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/core/services/rowSorter.js
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@ module.service('rowSorter', ['$parse', 'uiGridConstants', function ($parse, uiGr
propB = grid.getCellValue(rowB, col);
}

tem = sortFn(propA, propB, rowA, rowB, direction);
tem = sortFn(propA, propB, rowA, rowB, direction, col);

idx++;
}
Expand Down

0 comments on commit e8884bf

Please sign in to comment.