diff --git a/public/static/js/mapguesser.js b/public/static/js/mapguesser.js index 0160819..7a4ada3 100644 --- a/public/static/js/mapguesser.js +++ b/public/static/js/mapguesser.js @@ -35,7 +35,7 @@ Core.loadPositionInfo(Core.realPosition); document.getElementById('currentRound').innerHTML = String(Core.rounds.length) + '/' + String(Core.NUMBER_OF_ROUNDS); - document.getElementById('currentScoreSum').innerHTML = String(Core.scoreSum) + '/' + String((Core.rounds.length-1) * Core.MAX_SCORE); + document.getElementById('currentScoreSum').innerHTML = String(Core.scoreSum) + '/' + String((Core.rounds.length - 1) * Core.MAX_SCORE); } else { Core.startNewRound(); @@ -286,7 +286,7 @@ fontFamily: 'Roboto', fontSize: '16px', fontWeight: '500', - text: String(i+1) + text: String(i + 1) }); round.realMarker.setVisible(true); round.guessMarker.setVisible(true); @@ -470,4 +470,9 @@ document.getElementById('startNewGameButton').onclick = function () { Core.startNewGame(); } + + window.onbeforeunload = function (e) { + e.preventDefault(); + e.returnValue = ''; + }; })();