mirror of
https://gitlab.com/niansa/discordlistforbots.git
synced 2025-03-06 20:49:22 +01:00
18 lines
335 B
JavaScript
18 lines
335 B
JavaScript
function dontLoose() {
|
|
window.onbeforeunload = function (e) {
|
|
e = e || window.event;
|
|
let txt = "YOU MIGHT LOOSE DATA WHEN CONTINUING";
|
|
|
|
// For IE and Firefox prior to version 4
|
|
if (e) {
|
|
e.returnValue = txt;
|
|
}
|
|
|
|
// For Safari
|
|
return txt;
|
|
};
|
|
}
|
|
|
|
function loose() {
|
|
window.onbeforeunload = null;
|
|
}
|