Merge branch 'develop' into feature/in-game-compass
All checks were successful
default-pipeline default-pipeline #151

This commit is contained in:
Balázs Vigh 2021-04-29 19:00:11 +02:00
commit 145cb5f637
2 changed files with 8 additions and 1 deletions

View File

@ -12,6 +12,10 @@ html, body {
padding: 0;
}
body {
background-color: #cccccc;
}
button::-moz-focus-inner, input::-moz-focus-inner {
padding: 0;
border: 0;
@ -374,6 +378,7 @@ header>p>span:not(:last-child) {
}
main {
background-color: #ffffff;
padding: 6px 12px;
}

View File

@ -17,7 +17,7 @@
adaptGuess: false,
googleLink: null,
readyToContinue: false,
readyToContinue: true,
timeoutEnd: null,
countdownHandler: null,
@ -97,6 +97,8 @@
},
initialize: function (data) {
Game.readyToContinue = false;
if (data.history.length === 0 && !data.place) {
var div = document.getElementById('players');