Skip to content

Instantly share code, notes, and snippets.

@gabrielhpugliese
Created September 14, 2012 22:40
Show Gist options
  • Save gabrielhpugliese/3725414 to your computer and use it in GitHub Desktop.
Save gabrielhpugliese/3725414 to your computer and use it in GitHub Desktop.
Meteor unload
window.onbeforeunload = function(e) {
var message = "Your confirmation message goes here.";
var name = Session.get('name');
Name.remove(nome);
Meteor.flush();
return message;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment