mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-05-24 01:12:54 -04:00
8 lines
179 B
TypeScript
8 lines
179 B
TypeScript
export const activateNavigationWarning = () => {
|
|
window.onbeforeunload = () => true;
|
|
}
|
|
|
|
export const deactivateNavigationWarning = () => {
|
|
window.onbeforeunload = null;
|
|
}
|