Another fix for erroneous number of rows

This commit is contained in:
synth-ruiner 2015-03-01 13:47:50 +00:00
parent cf0342e248
commit b172e0e7d2
1 changed files with 3 additions and 3 deletions

View File

@ -211,10 +211,10 @@
//click blank tiles
$('li.revealed:not(.mine):empty').mousedown();
});
//this is a bit of a hack :( oh well
$('ul:gt(' + gameBoardHeight + ')').remove();
//this is a bit of a hack :( oh well
$('ul:gt(' + gameBoardHeight + ')').remove();
});
inputEnabled = true;
}