MAPG-61 add onbeforeunload function to prevent accidental leave
This commit is contained in:
parent
830989dc4c
commit
92408d6f02
@ -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