Advertisement
Guest User

Untitled

a guest
Feb 10th, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. // Prompt box when refreshing or closing the browser
  2. window.onbeforeunload = function() {
  3. if(modular.helpers.unsaved_changes)
  4. return "Not so fast cowboy, you've unsaved changes on this page. Do you really wish to leave this page?";
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement