Skip to content

Instantly share code, notes, and snippets.

@bradvogel
Created January 20, 2015 00:36
Show Gist options
  • Save bradvogel/6bbe38e7670175adc908 to your computer and use it in GitHub Desktop.
Save bradvogel/6bbe38e7670175adc908 to your computer and use it in GitHub Desktop.
// Disconnect Meteor when the tab is in the background.
document.addEventListener('visibilitychange', function() {
if (document.hidden) {
Meteor.disconnect();
} else {
Meteor.reconnect();
}
});
@bradvogel
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment