Merged in feature/MAPG-61-prevent-leaving-page-accidentall (pull request #41)
MAPG-61 add onbeforeunload function to prevent accidental leave
This commit is contained in:
commit
b32cfacdad
@ -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 = '';
|
||||
};
|
||||
})();
|
||||
|
Loading…
Reference in New Issue
Block a user