Skip to content

Instantly share code, notes, and snippets.

@allucardster
Created September 27, 2019 15:37
Show Gist options
  • Save allucardster/13e33c8523c4e12c924caf4f6840444a to your computer and use it in GitHub Desktop.
Save allucardster/13e33c8523c4e12c924caf4f6840444a to your computer and use it in GitHub Desktop.
window.onbeforeunload = function() {
if (data_needs_saving()) {
return "Do you really want to leave our brilliant application?";
} else {
return;
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment