Skip to content

Instantly share code, notes, and snippets.

@kmagiera
Created July 25, 2018 12:44
Show Gist options
  • Save kmagiera/b5efc363fdbecc725311017e04efbbc4 to your computer and use it in GitHub Desktop.
Save kmagiera/b5efc363fdbecc725311017e04efbbc4 to your computer and use it in GitHub Desktop.
AppState.addEventListener('change', nextAppState => {
if (nextAppState === 'active') {
this.interval = setInterval(this.refresh, 1000);
} else {
clearInterval(this.interval);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment