1
0
Fork 0
mirror of https://gitlab.com/niansa/discordlistforbots.git synced 2025-03-06 20:49:22 +01:00
discordlistforbots/static/dontloose.js
2021-01-15 10:02:45 +01:00

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;
}