Merge branch 'gh-pages' of https://github.com/teamsnowman/hextris into gh-pages

This commit is contained in:
lengstrom 2014-07-22 22:07:42 -04:00
commit 277d785ada
2 changed files with 2 additions and 1 deletions

View file

@ -10,7 +10,7 @@ function showbottombar() {
setTimeout(showbottombar, 1000);
} else {
window.iframeHasLoaded = true;
if (!(gameState == 1 || gameState == 2)) {
if (gameState != 1) {
$('#bottombar').fadeIn(150, 'linear');
}
}

View file

@ -166,6 +166,7 @@ function gameOverDisplay(){
var c = document.getElementById("canvas");
c.className = "blur";
showText('gameover');
showbottombar();
}
function togglePlayIcon (){