mirror of
https://github.com/osmarks/mycorrhiza.git
synced 2024-10-30 11:46:16 +00:00
Fix warn before closing
This commit is contained in:
parent
76d77f0887
commit
9ad9db9825
@ -1,14 +1,21 @@
|
||||
(function () {
|
||||
let changed = false;
|
||||
let textarea = document.querySelector('.edit-form__textarea');
|
||||
let form = document.querySelector('.edit-form');
|
||||
|
||||
let warnBeforeClosing = function (ev) {
|
||||
if (!changed) return;
|
||||
ev.preventDefault();
|
||||
return ev.returnValue = 'Are you sure you want to exit? You have unsaved changes.';
|
||||
};
|
||||
|
||||
textarea.addEventListener('input', function () {
|
||||
if (!changed) window.addEventListener('beforeunload', warnBeforeClosing);
|
||||
changed = true;
|
||||
});
|
||||
|
||||
form.addEventListener('submit', function () {
|
||||
changed = false;
|
||||
});
|
||||
|
||||
window.addEventListener('beforeunload', warnBeforeClosing);
|
||||
})();
|
||||
|
Loading…
Reference in New Issue
Block a user