Feature In-Game Compass #27

Merged
balazs merged 11 commits from feature/in-game-compass into develop 2021-04-29 19:15:44 +02:00
2 changed files with 8 additions and 1 deletions
Showing only changes of commit 145cb5f637 - Show all commits

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');