-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Alert message for form unsaved changes
- Loading branch information
1 parent
0a90239
commit 3b45b05
Showing
3 changed files
with
38 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
src/assets/js/react/utilities/PdfSettings/checkFormUnsavedChanges.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
export default function checkFormUnsavedChanges (form) { | ||
form.addEventListener('change', () => { | ||
window.onbeforeunload = () => '' | ||
|
||
return window | ||
}) | ||
} |
8 changes: 8 additions & 0 deletions
8
src/assets/js/react/utilities/PdfSettings/disableOnbeforeunload.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
export default function disableOnbeforeunload (form) { | ||
/* Disable onbeforeunload event during form submission */ | ||
form.onsubmit = () => { | ||
window.onbeforeunload = null | ||
|
||
return window | ||
} | ||
} |