From 6104da6b0b65656f675fd3956e3b93f4b128d52d Mon Sep 17 00:00:00 2001 From: synth-ruiner Date: Sun, 1 Mar 2015 12:05:38 +0000 Subject: [PATCH] Properly cascade blank tiles on clearing row --- index.html | 3 +++ 1 file changed, 3 insertions(+) diff --git a/index.html b/index.html index 43e7098..66c8dc2 100644 --- a/index.html +++ b/index.html @@ -209,6 +209,9 @@ //refresh last row to reflect new rows beneath $('li.revealed').last().parent().children('li.revealed').mousedown(); + + //click blank tiles + $('li.revealed:not(.mine):empty').mousedown(); }); $('ul:hidden').show();