add_faux_cell: create parent array if doesn't exists

This commit is contained in:
vieron
2012-10-03 15:46:15 +02:00
parent 82b8778762
commit 7dbbc105c1

View File

@ -2350,6 +2350,10 @@
original_row: row
}).coords();
if (!$.isArray(this.gridmap[col])) {
this.gridmap[col] = [];
}
this.gridmap[col][row] = false;
this.faux_grid.push(coords);