MAPG-61 add onbeforeunload function to prevent accidental leave

This commit is contained in:
Bence Pőcze 2020-05-24 14:47:15 +02:00
parent 830989dc4c
commit 92408d6f02

View File

@ -470,4 +470,9 @@
document.getElementById('startNewGameButton').onclick = function () { document.getElementById('startNewGameButton').onclick = function () {
Core.startNewGame(); Core.startNewGame();
} }
window.onbeforeunload = function (e) {
e.preventDefault();
e.returnValue = '';
};
})(); })();