MAPG-72 prevent to show 'beforeonload' confirmation panel if we already have the real position (guess is evaluated)

This commit is contained in:
Bence Pőcze 2020-05-30 18:14:50 +02:00
parent 136d4fe655
commit 1e7b106689

View File

@ -197,7 +197,7 @@
scoreBar.style.backgroundColor = scoreBarProperties.backgroundColor;
scoreBar.style.width = scoreBarProperties.width;
if (Core.rounds.length == Core.NUMBER_OF_ROUNDS) {
if (Core.rounds.length === Core.NUMBER_OF_ROUNDS) {
document.getElementById('continueButton').style.display = 'none';
document.getElementById('showSummaryButton').style.display = 'block';
}
@ -444,6 +444,10 @@
}
window.onbeforeunload = function (e) {
if (Core.rounds[Core.rounds.length - 1].position) {
return;
}
e.preventDefault();
e.returnValue = '';
};