Skip to content

Commit

Permalink
Merge pull request #374 from vin-e/bugfix/large-number
Browse files Browse the repository at this point in the history
fix #371 for number larger than 2.14 billion
  • Loading branch information
6pac committed May 15, 2019
2 parents 34ec867 + 6de2127 commit 4576936
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion slick.grid.js
Expand Up @@ -4112,7 +4112,7 @@ if (typeof Slick === "undefined") {
for (var row in rowsCache) {
for (var i in rowsCache[row].rowNode) {
if (rowsCache[row].rowNode[i] === rowNode)
return row | 0;
return (row ? parseInt(row) : 0);
}
}
return null;
Expand Down

0 comments on commit 4576936

Please sign in to comment.