Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
mleibman committed Aug 6, 2012
2 parents f202d2e + 20c32b2 commit 77b8c5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion slick.grid.js
Original file line number Diff line number Diff line change
Expand Up @@ -1104,8 +1104,8 @@ if (typeof Slick === "undefined") {
for (var j = ranges[i].fromRow; j <= ranges[i].toRow; j++) {
if (!hash[j]) { // prevent duplicates
selectedRows.push(j);
hash[j] = {};
}
hash[j] = {};
for (var k = ranges[i].fromCell; k <= ranges[i].toCell; k++) {
if (canCellBeSelected(j, k)) {
hash[j][columns[k].id] = options.selectedCellCssClass;
Expand Down

0 comments on commit 77b8c5f

Please sign in to comment.