MAPG-72 prevent to show 'beforeonload' confirmation panel if we already have the real position (guess is evaluated)
This commit is contained in:
parent
136d4fe655
commit
1e7b106689
@ -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 = '';
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user