Open GoogleCodeExporter opened 8 years ago
I've seen this same issue crop up. I was able to solve it by changing two
lines of code.
At 789 and 809, the code reads:
<code>
if (this.cells[i][col].isUnwritten() || chars[i] == this.cells[i][col].value) {
//CHANGED
</code>
This is incorrect. The code should read:
<code>
if (this.cells[i][col].isUnwritten() || chars[i] == this.cells[i][col]) {
//CHANGED
</code>
Just remove that .value and this error will stop happening.
Original comment by alasterd...@gmail.com
on 1 Feb 2014 at 10:13
Original issue reported on code.google.com by
suraj.bh...@gmail.com
on 29 Oct 2013 at 10:37Attachments: